Assignment – day 3

Write down 10 features of Kubernetes with image? Storage orchestration Auto scaling Load balancing Self healing Container grouping using pod Automate roll backs What are the components of Kubernetes master and explain each component’s function? Apiserver: exposes REST APIs. This is the entry point to the k8s cluster. API server access JSON data via manifest file Cluster store: Stores cluster state and configurations. Controller manager: Controller of controllers like node controller, namespace controller, etc. Each controller has its own responsibilities

Read more

Assignment for docker day 1

Q1. Explain What is Docker Container with image? Docker images act as a set of instructions to build a Docker container, like a template. Docker is used to create, run and deploy applications in containers. Images can exist without containers, whereas a container needs to run an image to exist. A Docker container is a virtualized runtime environment used in application development. It is used to create, run and deploy applications that are isolated from the underlying hardware. Q2. What

Read more