Comandos:
kubectl create namespace laboratorio
kubectl run nginx --image=nginx --restart=Never -n laboratorio
Teste:
kubectl get pod -n laboratorio
Resultado:
NAME READY STATUS RESTARTS AGE
nginx 1/1 Running 0 13s