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’s New (Major Themes)Removal of several beta Kubernetes APIsA number of APIs are no longer serving specific Beta versions in favour of the GA version of those APIs. All existing objects can be interacted with via general availability APIs. This removal includes beta versions of ValidatingWebhookConfiguration, MutatingWebhookConfiguration, CustomResourceDefinition, APIService, TokenReview, SubjectAccessReview, CertificateSigningRequest, Lease, Ingress,

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 POD is logical entity or a place holder, which represents a single instance of kubernetes cluster. POD can house one or more containers with shared NW, Storage resources. PODs can not be created. It can only be instantiated with the help of node agent kubelet. kubectl get pods >> This command will list all

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 Docker volumes are the file systems mounted with in a containers, that are originally created in the root file system of the docker host. Docker volumes can be shared across multiple containers running in that particular Docker host. Docker volumes can be used to share any common artifacts across container. docker volume create [volume_name]

Read more

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

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 designed to work on self sustained model, with out being dependent on the Origin. So that every GIT local copy can create the trees and blob objects structures and its references in order to track the file content changes and versioning the file delta changes. Which is why it is called file

Read more