Answers for "pod deintegrate -> pod clean -> pod install"

1

kubectl cleanup pods

# I deleted the resources in the below order and it worked for me.

# To get all the resources.

kubectl get pods,services,deployments,jobs,daemonset

# Delete the resources like below:

kubectl delete deployments <deployment>
kubectl delete services <services>
kubectl delete pods <pods> --namespace=<namespace>
kubectl delete daemonset <daemonset>
Posted by: Guest on December-06-2021
-1

remove pod and install again

$ pod clean
Posted by: Guest on May-22-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language