เป็นตัวอย่างการเริ่มใช้ Kubernetes แบบ อย่างง่าย
$ kubectl get nodes
$ kubectl create deployment nginx --image=nginx
$ kubectl get deployments
ใช้
kubectl describe deployment nginx
เพื่อดูรายละเอียด
$ kubectl run nginx --image=nginx:latest --port=80
$ kubectl get pod
kubectl describe pods nginx เพื่อดูรายละเอียด pod
ในที่นี้ใช้ Type เป็น Nodeport
$ kubectl expose deployment nginx --port=80 --type=NodePort
$ kubectl get services
<node ip>:30303