GCP (Google Cloud Platform) fundamentals sample question with answer 14

Question:
What is a Kubernetes pod?

  1. A group of containers
  2. A group of clusters
  3. A group of nodes
  4. 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