Kubernetes replicasets

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 has a feature of deploying multiple replicas of a pod and managing them from workstation. Each of these sets of replicas of a pod are called replicasets. Replicasets can be created, deleted, updated in a single time. These are shown as deployments in the kubectl cli Creating deployment: kubectl create deployment rajesh –image=scmgalaxy/nginx-devopsschoolv1

Read more

Kubernetes, how it works

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 a container orchestrator tool. It solves the problem of manually launching, monitoring and maintaining container applications. A Kubernetes cluster is a set of Nodes and a control plane (aka master) Master controls all the nodes, it does so by using following components: a) API server: All incoming and outgoing communication with the

Read more

10 uses 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 Runs multiple containers from a single file and allows common access a) docker-compose run: run file b) docker-compose create: create services c) docker-compose stop: stop services d) docker-compose up: create and run e) docker-compose down: stop f) docker-compose rm g) docker-compose ps h) docker-compose push i) docker-compose pull

Read more

Docker Introduction Assignment

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 Containerization is motivated by need of dynamic scaling and resource allocation. Docker allows us to work in different environments and share with different involved stakeholders with ease.

Read more