쿠베르네트스--모든 게 쿠베르토르
노드 나열
# Usual Output
kubectl get nodes
# Wide variant (provided more fields w.r.t. node like internal & external IP, OS Image, Kernel version and container runtime etc.
kubectl get nodes -o wide
# Machine friendly output
kubectl get nodes -o yaml
kubectl get nodes -o json
# Awesome node monitoring and all other node info, also lists all pods across all namespaces running on that node
kubectl describe node/<node-name-from-nodes-command>
kubectl Descripte는 기본적으로 다음 형식의 모든 자원을 사용할 수 있습니다kubectl describe "<resource-kind>/<resource-name>"
서비스 받기
Get은 모든 대화가 가능한 배포된 서비스입니다.
kubectl get svc
이름 공간
# Get all namespaces
kubectl get ns
대부분의 명령은 - n 또는 - A (모든 이름 공간에 적용) 를 수정기로 사용하여 명령을 실행할 수 있다콩꼬투리를 잡다
# Gets all pods across all namespaces
kubectl get pods -A
# Gets all pods in a specific namespace
kubectl get pods -n "<namespace-name>"
Reference
이 문제에 관하여(쿠베르네트스--모든 게 쿠베르토르), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/sidgod/kubernetes-all-things-kubectl-2o8e텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)