GCP (Google Cloud Platform) fundamentals sample question with answer 14
Question:
What is a Kubernetes pod?
- A group of containers
- A group of clusters
- A group of nodes
- A group of VMs
Answer:
A - is correct. In Kubernetes, a group of one or more containers is called a pod. Containers in a pod are deployed together. They are started, stopped, and replicated as a group. The simplest workload that Kubernetes can deploy is a pod that consists only of a single container