HEROJOON 블로그(히로블)

Kubernetes 명령어 본문

Kubernetes

Kubernetes 명령어

herojoon 2020. 3. 16. 01:18
반응형

#kubectl pod 목록 조회
kubectl get pods

#kubectl pod 상세 정보 확인
kubectl describe pod -n {namespace} {pod id}

#kubectl namespace의 pod 조회
kubectl get pod -n {namespace}

#kubectl service 목록 조회
kubectl get service -n {namespace}

#kubectl logs 확인
kubectl logs -f -n {namespace} {pod name}

#kubectl node의 리소스 확인
kubectl describe nodes {node nmae}

#kubectl node 확인
kubectl top nodes

#kubectl 모든 namespace의 pod 자원 확인하기 (cpu, memory)
kubectl top pod --all-namespaces

#azure kubernetes 웹 대시보드 열기
az aks browse -g {리소스그룹} -n {쿠버네티스이름}

반응형

'Kubernetes' 카테고리의 다른 글

Docker와 Kubernetes 이해하기  (0) 2019.10.18
Comments