Infra/MLops

[k8s]pods 지우고 싶어요ㅠㅠ error: resource(s) were provided, but no name, label selector, or --all flag specified

뚜둔뚜둔 2022. 3. 4. 18:23

pods 삭제하고 싶은데 ㅠㅠ 안지워진다이겁니다ㅠㅠ

pods 지우기

>  kubectl delete <pod name>

error: resource(s) were provided, but no name, label selector, or --all flag specified

pods를 replicationcontroller or deployment 상태로 배포를 했기때문에 pods를 삭제해도 안지워지는 것이였다 ㅠㅠ

해당 replicationcontroller 또는 deployment를 먼저 삭제한 다음 pods를 지우면 된당!!! 

kubectl get deployments

# deployments 확인하기

>  kubectl get deployments 

 

# deployments 삭제하기

kubectl delete deployment <name>

 

# pod 삭제하기

 kubectl delete <name>

 

반응형