Rethink platform engineering and developer impact in the age of AI. Tune in to our webinar on Thursday, May 22.

Back to Kubernetes Glossary

Pod

What is a Kubernetes pod?

Pods are the basic compute deployment unit in Kubernetes. Pods consist of one or more containers. All containers on the pod are managed together and share resources allocated to the pod. Pods represent a single application instance, so they can be easily scaled up or down. Kubernetes pods have a specific lifecycle that is managed by Kubernetes.

Related items