1.

How is Kubernetes related to Docker?

Answer»

Though Docker is a great tool for quick development and environment setup, it cannot be used in production directly. It needs a layer of orchestration for CONTAINER management.

That’s where Kubernetes comes into the picture. Kubernetes is an open source orchestration system for Docker CONTAINERS. It manages containerized applications across multiple hosts and provides basic mechanisms for DEPLOYMENT, maintenance, and scaling of applications.

In a Kubernetes environment, ONE or more docker containers are run inside a ‘pod’. A pod is a basic UNIT that Kubernetes deals with and it represents one or more containers that should be controlled as a single "application".



Discussion

No Comment Found