InterviewSolution
Saved Bookmarks
| 1. |
What Is Pod? |
|
Answer» A pod is collection of containers and its storage INSIDE a node of a Kubernetes CLUSTER. It is possible to create a pod with multiple containers inside it. Following is an example of KEEPING a database CONTAINER and web interface container in the same pod. A pod is collection of containers and its storage inside a node of a Kubernetes cluster. It is possible to create a pod with multiple containers inside it. Following is an example of keeping a database container and web interface container in the same pod. |
|