kubectl 명령어
kubectl api-resourceskubectl을 사용 시 약어를 알기 위해 주로 사용kubectl --help기본 도움말응용해서 kubectl proxy --help 입력하면 kubectl proxy 명령어에 대한 내용이 자세히 나옴kubectl get nodes연결된 노드 정보를 보는 명령어좀 더 자세히 보고 싶다면 kubectl get nodes -o wide 입력아주 자세히 보고 싶다면 kubectl describe node [노드명] 입력kubectl get pods연결된 파드 정보를 보는 명령어좀 더 자세히 보고 싶다면 kubectl get pods -o wide 입력아주 자세히 보고 싶다면 kubectl describe pod [이름] 입력kubectl run [이름] --image=ng..
2025.03.10