Post

[Kubernetes] kubectl delete command

[Kubernetes] kubectl delete command

기본 구조

1
2
3
4
kubectl delete [리소스 유형] [리소스 이름]

# Pod 삭제하려면 다음과 같이 입력
kubectl delete pod [파드 이름]

[명령어] --help를 입력하면 더 다양한 옵션들을 찾을 수 있다.

Option

  • --all: 모든 리소스를 삭제

  • --force: 강제 삭제

  • --grace-period=<초>: 삭제될 때 대기할 시간을 초 단위로 설정

  • --timeout=<초>: 명령이 실행될 때 대기할 최대 시간을 초 단위로 설정

1
2
3
4
5
# 모든 파드를 강제로 삭제
kubectl delete pod --all --force

# 모든 종류의 리소스와 파드를 삭제
kubectl delete all --all

자주 쓰는 명령어는 kubectl-cheatsheet

This post is licensed under CC BY 4.0 by the author.