CLOUD/Kubernetes
[쿠버네티스] pv, pvc 완전히 삭제하는 방법 (terminating 해결)
헐리
2021. 9. 29. 17:03
kubectl patch pv <pv_name> -p '{"metadata": {"finalizers": null}}'
kubectl delete pv <pv_name> --grace-period=0 --force