본문 바로가기
CS/삽질로그

[kubeflow, kubernetes] 에러 파드 삭제하는 방법 (kubeflow delete error pod)

by judy@ 2022. 10. 28.

아래 명령어를 통해 에러 파드를 모두 삭제 가능하다.

이를 응용하여 Error -> Completed 또는 Running으로 변경하여 다른 상태의 파드도 삭제 가능함.

 

# default namespace
kubectl get pods | grep Error | awk '{ print $1 }' | xargs kubectl delete pod

# specific namespace
kubectl get pods -n <namespace> | grep Error | awk '{ print $1 }' | xargs kubectl delete pod -n <namespace>

# all namespace
kubectl get pods -A | grep Error | awk '{ print $1 }' | xargs kubectl delete pod -A
반응형