[Kubernetes] Force Delete Pod, PV, and PVC
Force Delete Pod, PV, and PVC
# Force delete Pod
# kubectl delete pod {pod_name} -n {namespace} --force --grace-period=0
kubectl delete pod --namespace hrs-pipeline-airflow airflow-scheduler-69c78fbbd5-vmdqx
# Force delete PV|PVC
# kubectl patch pvc|pv {pvc_name} -p '{"metadata":{"finalizers":null}}'
kubectl patch pv pvc-10697e52-7b01-48d8-a51f-19e6bec29105 -p '{"metadata":{"finalizers":null}}'
kubectl delete pv pvc-10697e52-7b01-48d8-a51f-19e6bec29105 --grace-period=0 --force