0 votes
in Kubernetes K8s by
What is a pod and what does it do?

1 Answer

0 votes
by

A pod is a group of containers that are deployed together on the same host. It is the basic execution unit of the Kubernetes application that can create or deploy the Kubernetes unit of object models.

Kubernetes pods can be used in two ways. they are as follows:

  1. Pods that can run in a single container
  2. Pods that can run with multiple containers when it is required to work together
...