Answers for "kubectl get deployment - just name"

3

kubectl delete all pods

kubectl delete --all pods
Posted by: Guest on May-10-2020
5

kubernetes get deployments

# Get pods in default namespace
kubectl get deployments

#Get Pods in my-namespace
kubectl get deployments -n my-namespace

#Get Pods in all namespaces
kubectl get deployments --all-namespaces
Posted by: Guest on October-20-2020

Code answers related to "kubectl get deployment - just name"

Browse Popular Code Answers by Language