Assignment 1 Day 3

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 Write down 10 features of Kubernetes with image Helps manage large clusters Load balancing Service discovery Self monitoring Security Storage services Automated rollbacks Optimum resource utilization Auto scalable Predictable What are the components of Kubernetes master and explain each component’s function?API Server-All requests come to API server. REST based.etcd-storage for cluster configuration and stateController-keeps

Read more

Assignment 2 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 List out all INSTRUCTION statement of dockerfile and give one line explanationFROMMAINTAINERRUNCMDLABELEXPOSEENVADDCOPYENTRYPOINTVOLUMEUSERWORKDIRARGONBUILDSTOPSIGNALHEALTHCHECKSHELL Q2. Build all these 5 images and run container and observe the use cases of it.https://devopsschool.com/tutorial/docker/dockerfile/dockerfile-example-sample-lab.html Q3. Write a example dockerfile with 2 CMD, 2 ENTRYPOINT and 1 CMD/1ENTRYPOINT and write down a behavior of it.if ENTRYPOINT is not specified, default is

Read more

Assignment 1 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 What is Storage Driver and types of Storage Driver? Explain with Images.A docker image can have different layers. When a container is created out of this image it will also have a writable layer on top of all the read only layers created out of the image. A storage driver manages all these layers

Read more

Assignment 2 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 Q1. – What is the use of “docker update” commands? with example and image “docker update” is used to limit the usage of resources a container can use. CPU usage can be limited by CPU time, no.of CPUs used, or which CPUs are used. Memory usage can be limited for Main Memory as well

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 Q1. Explain What is Docker Container with image?A docker image contains all the dependencies needed to make an application runA docker image is run in a docker container. Any no.of containers can run the same image. Q2. What is the differenece between docker stop and docker kill?Docker stop is gracefully stopping a container, first

Read more