디버깅에 유용한 명령어

2024. 5. 5. 23:08k8s

# yml 파일 생성
vi {yml파일}

# yml 파일 실행
kubectl apply -f {yml파일}

# 실행결과 확인
kubectl get pods -A
kubectl get pods -n {namespace}

# pod 재기동
kubectl delete pod/{pod} -n {namespace}

# 로그 보기
kubectl logs -f {pod} -n {namespace}
kubectl logs -f service/{service} -n {namespace}
kubectl logs -f ingress/{ingress} -n {namespace}
kubectl logs -f ingress/{ingress} -n {namespace} -c {container}

# 이벤트 확인
kubectl get event -A
kubectl get event -n {namespace}

# pod 접속
kubectl exec -it {pod} -n {namespace} -- sh
kubectl exec -it {pod} -n {namespace} -c {container} -- sh

'k8s' 카테고리의 다른 글

Minikube host directory 마운트하기  (0) 2024.12.31
docker registry 조회 명령  (0) 2024.07.06
ConfigMap 마운트  (0) 2024.05.04
initContainers 사용하기  (1) 2024.04.28
Minikube docker registry 설치  (0) 2024.04.16