kubectl 핵심 명령어 정리기본 형태:kubectl [명령] [리소스 종류] [리소스 이름] [옵션]예:kubectl get podskubectl describe pod runtime-apikubectl logs runtime-api네임스페이스를 사용할 때:kubectl -n week4 get pods현재처럼 환경변수로 저장했다면:export NS=week4kubectl -n "$NS" get pods1. 리소스 목록 확인: getPod 확인kubectl -n "$NS" get pods축약형:kubectl -n "$NS" get po출력:NAME READY STATUS RESTARTS AGEruntime-api 1/1 Running 0 5m여..