쿠베르네트스--모든 게 쿠베르토르

1978 단어 kubernetedevlog
가장 먼저 해야 할 일-우리가'kubectl'을 어떻게 발음하는가: (내가 지금 들은 바에 의하면 현재는 (정식적으로)'Kube Control'이라고 불린다.

노드 나열
# 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>"

좋은 웹페이지 즐겨찾기