Assignment of Day3

Write down 10 features of Kubernetes with image Reduce the complexity of container Container orchestration Scheduling user requests Scaling containers Load balancing the containers Rollback containers Self-healing Monitoring Add-ons  like ingress, dns Ability to absorb changes quickly What are the components of Kubernetes master and explain each component’s function? There are 4 major components in kubernetes master. 1. API server -> Collect or get the user input and act as a front end to control plane 2. Controller -> responsible

Read more

Assignement of Day-2

Q1. List out all INSTRUCTION statement of dockerfile and give one line explanation.Environment variables are supported by the following list of instructions in the Dockerfile: ADD -> check if compressed file and copying the content to docker containerCOPY -> Just copying the content to docker containerEXTRACT -> Extract the content to specified location in docker container ENV -> for setting the environment valuesEXPOSE -> exporting the port of the application to outside container. FROM -> pull the docker imageLABEL ->

Read more

Assignment for docker day 1

Q1. Explain What is Docker Container with image? Docker container with image is an running image, which have the basis things like ROOT FS, PID NS, USER NS, and NET NS. Q2. What is the differenece between docker stop and docker kill? the difference i observed was during the stop the exit value is zero (0) and during the kill i was getting non zero value (137) ubuntu@ip-172-31-28-155:~$ sudo docker stop abhinabhinubuntu@ip-172-31-28-155:~$ sudo docker ps -a | grep abhin28525b0ff5df httpd

Read more