
kubectl get pods kubectl describe kubectl create kubectl apply kubectl log kubectl exec -it -- /bin/bash kubectl delete kubectl get pods 현재 실행 중인 모든 파드의 목록을 가져오는 데 사용된다. Used to retrieve a list of resources. fetches a list of all currently running pods. $ kubectl get pods NAME READY STATUS RESTARTS AGE mypod 1/1 Running 0 2m another 2/2 Running 1 5m kubectl describe pod 특정 파드에 대한 상세한 정보를 출력하는 데 ..