kubernetes - How to check the containers running on a pod in kubernettes? -
i able list of pods running on kubernetes cluster using:
kubectl pods
how containers running on particular pod?
you can use describe
command:
kubectl describe pod [podname]
that specify containers in pod, along other information.
Comments
Post a Comment