microsoft demo, run nginx as webserver
kubectl run --image=nginx nginx
kubectl get po --show-labels -owide -w
kubectl expose deploy nginx --selector run=nginx --port=80 --type=NodePort
minikube ssh
ifconfig eth1
kubectl create configmap envoy-config --from-file=envoy.yaml
kubectl create -f envoy-deploy.yaml
kubectl expose deploy envoy --selector run=envoy --port=10000 --type=NodePort
kubectl create configmap game-config --from-file=game.properties
kubectl create configmap game-env-config --from-env-file=game.properties
kubectl get configmap -oyaml game-config
kubectl create configmap special-config --from-literal=special.how=very --from-literal=special.type=charm
kubectl create -f downward-api-pod.yaml
kubectl get po downward-api-pod
kubectl logs -f downward-api-pod
kubectl create -f configmap-volume-pod.yaml
kubectl get po
kubectl logs -f configmap-volume-pod
kubectl create -f centos-readiness.yaml
kubectl create -f multiple-container-pod.yaml
kubectl get svc -o=custom-columns=NAME:.metadata.name,CREATED:'.metadata.annotations'