kubectl installed on your local machinemy-first-clusterCluster provisioning typically takes 2-5 minutes.
Once your cluster status shows Ready:
mv ~/Downloads/my-first-cluster-kubeconfig.yaml ~/.kube/config
kubectl get nodes
You should see your worker nodes in Ready status.
Deploy a simple nginx application to verify everything works:
kubectl create deployment nginx --image=nginx
kubectl expose deployment nginx --port=80 --type=ClusterIP
Verify the deployment:
kubectl get pods