Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Deploy Test Workload

Deploy a small nginx deployment with a ClusterIP Service to confirm the cluster can schedule and serve workloads:

kubectl create deployment nginx --image=nginx
kubectl expose deployment nginx --port=80 --type=ClusterIP

Check the results:

kubectl get pods -o wide
kubectl get svc

Congratulations! You have a working Kubernetes cluster with a scheduled workload on Talos Linux running on Pextra CloudEnvironment®. You can now use kubectl to manage the cluster and deploy additional workloads.

Next Steps