Answers for "kubectl kill all pods"

2

stop all kubernetis pods

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

delete all pods in default namespace

kubectl delete --all pods --namespace default
Posted by: Guest on June-22-2020
0

kill pod kubectl command

#To delete a pod just do following ;)
kubectl delete pod pod_name
Posted by: Guest on August-11-2021

Browse Popular Code Answers by Language