How Kubernetes works? Explain each components with Short Summary

Kubernetes cluster as two parts: the control plane and the compute machines, or nodes.Each node runs pods, which are made up of containersThe control plane is responsible for maintaining the desired state of the cluster, such as which applications are running and which container images they use. Compute machines actually run the applications and workloads.Kubernetes runs on top of an operating system and interacts with pods of containers running on the nodes. desired state of a Kubernetes cluster defines which

Read more

What is Kubernetes and its feature:

Kubernetes is a container management system developed on the Google platform. Kubernetes helps to manage containerized applications in various types of physical, virtual, and cloud environments. Google Kubernetes is a highly flexible container tool to consistently deliver complex applications running on clusters of hundreds to thousands of individual servers.Kubernetes helps you to control the resource allocation and traffic managementFeatures :Automated SchedulingAuto-healing capabilitiesresource utilizationHorizontal Scaling & Load BalancingResource monitoring

Read more

what-is-docker-update-and-docker-wait-explain-with-example-commands

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. With a single command, you can place limits on a single container or on many. To specify more than one container, provide space-separated list of container names or IDs Command example:docker update –cpus 4 320f02d6f0f7 Docker waitBlock until one or more containers stop, then print their exit codes Example:1st terminaldocker wait 320f02d6f0f7In another terminal, stop

Read more

Docker Assignment

What is Docker? Docker is a platform and managing tool which has a containers What is Container?Container is a independent application used in Run time Env which contains 1 mount, 1 user, 1 Network and 1 PID Map Benefits of Docker:Its saves Cost, time and improves the Quality of Application. Docker Architecture:Docker uses a client-server architecture and docker client communicates with the Docker Server(Deamon) which can build docker containers. It is a Restful service where client and Server can communicate

Read more