- Deploy a pod with the kubectl cli tool
- Manage the basic life cycle of a pod
gcloud compute ssh node0
kubectl get pods
kubectl run hello \
--labels="app=hello,track=stable" \
--image=quay.io/kelseyhightower/hello:1.0.0
kubectl describe pods hello
Grab the IP
address for the pod
kubectl describe pods hello
curl http://IP