kubectl get pods
# kubectl port-forward pod/[파드명] [로컬에서의 포트]/[파드에서의 포트]
kubectl port-forward pod/nginx-pod 80:80
# kubectl delete pod [파드명]
kubectl delete pod nginx-pod
# kubectl describe pods [파드명]
kubectl describe pods nginx-pod
# kubectl logs [파드명]
kubectl logs nginx-pod
# kubectl exec -it [파드명] -- bash
kubectl exec -it nginx -- bash
# kubectl exec -it [파드명] -- sh
kubectl exec -it nginx -- sh