Define kubernetes ReplicaSets with Example and commands

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 Replicaset: A ReplicaSet is one of the Kubernetes controllers that makes sure we have a specified number of pod replicas running. A ReplicaSet’s purpose is to maintain a stable set of replica Pods running at any given time. As such, it is often used to guarantee the availability of a specified number of identical

Read more

What is Kubernetes and its features-

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 Kubernetes is an open-source platform for automated deployment, scaling, and management of containers and containerized applications. Features of Kubernetes:  Automating many processes of applications and services deployment that before were carried out manually  Kubernetes checks constantly the health of nodes and containers It takes care of scaling and failover for the application Kubernetes is

Read more

List out features of docker-compose

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 1.Compose is a tool for defining and running multi-container Docker applications 2. A YAML file is used to configure all the application services 3. With a single command the services can be created and started using the defined configurations 4. Compose has command to start , stop and rebuild services. 5. docker-compose can be

Read more

What is tempfs in docker volume and how to use 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 A tmpfs mount is temporary, and only persisted in the host memory. When the container stops, the tmpfs mount is removed, and files written there won’t be persisted. This is useful to temporarily store sensitive files that you don’t want to persist in either the host or the container writable layer

Read more