What is the 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 The Control plane (master)The Control plane is made up of the kube-api server, kube scheduler, cloud-controller-manager and kube-controller-manager. Kube proxies and kubelets live on each node, talking to the API and managing the workload of each node. As the control plane handles most of Kubernetesā€™ ā€˜decision makingā€™, nodes which have these components running generally

Read more

Assignment Day 2 – Explain docker update & docker wait commands with example

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 update TheĀ docker updateĀ command dynamically updates container configuration. You can use this command to prevent containers from consuming too many resources from their Docker host eg : docker update –cpu-shares 512 317e428b3427(share cpu) you can check with the docker inspect 166eb15bcb01 command docker wait Start a container in the background. Run docker wait, which should

Read more

Assignment for Docker ā€“ 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: Stop a running container (send SIGTERM, and then SIGKILL after grace period) […] The main process inside the container will receive SIGTERM, and after a grace period, SIGKILL. [emphasis mine] docker kill: Kill a running container (send SIGKILL, or specified signal) […]

Read more

Assignment for Docker ā€“ 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 Create a POST on bestDevops.com and answer following questions? Install Docker in your assigned VM? Verify docker installation and basic commands? Self proov it ā€“ What is Container? What is the diff between docker pause and docker unpause? What is the diff between docker stop and docker kill?

Read more