k8s의 가장 기본적이고 작은 단위인 Pod를 다루는 명령어와 함께 pod을 통해 실행시킨 웹서비스를 외부로 노출해보도록 하겠다. 명령어 내용 kubectl get nodes node 상태 확인 kubectl get pods pod 상태확인 -o wide 을 통해 더 자세하게 볼 수 있음 kubectl run / delete pod 실행 / 삭제 kubectl expose service 실행 -type= 을 통해 타입설정 kubectl create namespace namespace 생성 Node 상태 확인 kubectl get nodes Pod 상태 확인 kubectl get pods Pod 배포 nginx 80 포트로 pod 생성 시 kubectl run app-nginx(pod이름) --image ..