Answers for "kubectl stop pods"

2

stop all kubernetis pods

#All pods
kubectl delete --all deployments
Posted by: Guest on April-09-2021
3

kubectl delete all pods

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

kubectl delete pods

kubectl delete pod podname
Posted by: Guest on May-10-2020
0

kubectl get pods

# Get pods in default namespace
kubectl get pods

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

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

kubectl describe to yaml

kubectl describe <type> <name> -o yaml
Posted by: Guest on August-25-2020

Browse Popular Code Answers by Language