특징

관련 명령어

# Pod 생성
kubectl apply -f example-pod.yaml

# Pod 확인
kubectl get pods --all-namespaces
kubectl describe pod my-nginx-pod

# Pod 컨테이너 내부 명령 실행
kubectl exec -it my-nginx-pod -c nginx -- bash

# Pod 삭제
kubectl delete pod my-nginx-pod