- Deploy a pod with the kubectl cli tool
- Manage the basic life cycle of a pod
kubectl get pods
kubectl run inspector \
--labels="app=inspector,track=stable" \
--replicas=1 \
--image=b.gcr.io/kuar/inspector:1.0.0
kubectl get pods --watch
kubectl describe pods inspector
Grab the IP
address for the pod
kubectl describe pods inspector
And run this command on one of your Kubernetes nodes:
curl http://IP