$ kubectl run --image=nginx nginx
$ kubectl run --image=nginx nginx --restart='Always'$ kubectl get po --show-labels -owide -w$ kubectl expose deploy nginx --selector run=nginx --port=80 --type=NodePort$ kubectl get svc$ curl 192.168.34.2:<nodeport>