본문 바로가기

IT for developer/Kubernetes

Kubectl 명령어

현재 프로젝트 개발중에 많이 쓰고 있는 명령어 참고용

 

Namespace 목록 확인

kubectl get ns

 

Context 목록 확인

kubectl config get-contexts

 

Context 변경 하기

kubectl config use-context 컨텍스트이름

 

Pods 확인하기

kubectl get pods

 

Bash 실행하기

kubectl exec --stdin --tty Pod이름 -- /bin/bash

 

로그확인하기

kubectl logs -f Pod이름