Architecture and components of Kubernetes

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 kube-apiserver kubernetes API server validates and configures data for the api objects which include pods, services, replications controllers and others. This is the only component that communicates with the etcd cluster, making sure data is stored in etcd and is in agreement with the service details of the deployed pods kube-controller It runs number

Read more

Answer: Assignment for Docker Day-2

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 Define a docker image in points Docker Image has many layers which holds the information required for the configuration. Base image + parent image + layers+ container layer + docker manifest. Each of the files that make up a Docker image is known as a layer. These layers form a series of intermediate images, built one

Read more

Answer: Assignment Day2

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 Update: On go we can change the settings of the container using Update command Before updating the memory-swap After updating the memory-swap and memory Wait: Docker wait command waits for 1 or more container to exit and provides the return status of the docker exit.Once docker wait is used the control will go inside

Read more

Answer: Assignment Day 1

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 is the diff between docker stop and docker kill? docker stop will send SIGTERM to the process and docker will have some-time seconds to clean up like saving files or emitting some messages. Will return “ExitCode:0” docker kill will terminate the process used in-case the docker is in locked up state or not

Read more