xxxxxxxxxx
# Get Pods in all namespaces
kubectl get po -A
# Get pods in default namespace
kubectl get po
xxxxxxxxxx
A Kubernetes pod is a collection of one or more Linux® containers,
and is the smallest unit of a Kubernetes application.
Any given pod can be composed of multiple,
tightly coupled containers (an advanced use case) or
just a single container (a more common use case).
xxxxxxxxxx
A Kubernetes pod is a collection of one or more Linux® containers,
and is the smallest unit of a Kubernetes application.
Any given pod can be composed of multiple,
tightly coupled containers (an advanced use case) or
just a single container (a more common use case).