What are the new major changes happend in kubernetes 1.22?

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now What are the new major changes happened in Kubernetes 1.22? Server-Side Apply made generally available External credential providers, available by way of plug-ins Etcd, the default back-end storage for Kubernetes has been updated to a new release (3.5.0) Better support for developing and running on Microsoft Windows. QoS for memory resources is available as

Read more

What is Kubernetes pod?

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now A pod is the smallest execution unit in Kubernetes. A pod encapsulates one or more applications. Pods are ephemeral by nature, if a pod (or the node it executes on) fails, Kubernetes can automatically create a new replica of that pod to continue operations. Pods include one or more containers.

Read more

What is Docker volume and how to work with it?

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now To have persistent data and to share data between containers, Docker came up with the concept of Docker Volume.Volumes are directories that are outside of the default File System and exist as normal directories and files on the host filesystem.As it the volume is outside the container and on host machine, data will not

Read more

What is continuous integration?

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Continuous integration is a software development process where developers integrate the new code they’ve written more frequently throughout the development cycle, adding it to the code base at least once a day. Once the code is commited to the repository, automated build, code analysis,scanning, coverage, testing are performed. Continuous feedback system is enabled to

Read more

Write down steps to add new linux node of Jenkins?

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Step 1: Setup and Configure (Install Java and other required tools) the linux machine identified as nodeStep 2: Generate SSH Key on Master nodeStep 3. Add Public key in node machineStep 4: Add node using Jenkins web

Read more

List down top 20 jenkins plugins

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now LDAPRole-based Authorization StrategyBitbucketBitbucket server integrationCobertura pluginCredentialsSSH CredentialsJacocoGitJUnitMailerMultibranchEmail Extension TemplateSonarQube ScannerAmazon ECR pluginNexus Artifact UploaderDockerS3 publisherList Git Branches parameterKubernetesAnsible

Read more

Git is not a file versioning tool. Its file system versioning tool. How?

Limited Time Offer! For Less Than the Cost of a Starbucks Coffee, Access All DevOpsSchool Videos on YouTube Unlimitedly. Master DevOps, SRE, DevSecOps Skills! Enroll Now Git is not storing each and every file in the repository during the every commit. That is why it is not versioning tool.Instead, Git looks at data more like a set of snapshots of a mini filesystem.For every commit, Git takes a snapshot of what all your files, look like at that moment and

Read more