Kubectl delete

From UVOO Tech Wiki
Revision as of 20:59, 27 September 2022 by Busk (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
kubectl delete pod <PODNAME> --grace-period=0 --force --namespace <NAMESPACE>
kubectl -n my-namespace delete pod/mypod --grace-period=0 --force

namespaces stuck in terminating statue

kubectl get namespace zabbix-dev -o json > tmp.json

vi tmp.json

remove kubernetes from finalizer line so it looks like
    "spec": {
        "finalizers": [
        ]
    },
kubectl replace --raw "/api/v1/namespaces/zabbix-dev/finalize" -f tmp.json