Answers for "find on which my pod is running kubernetes"

1

kubernetes get inside pod

kubectl exec -it <pod-name> -- sh
Posted by: Guest on March-09-2021
0

how get pods in kuber

# Get Pods in all namespaces
kubectl get po -A

# Get pods in default namespace
kubectl get po
Posted by: Guest on April-01-2021

Browse Popular Code Answers by Language