Welcome! This is your first notebook entry in the GROW program.
Use this space to document the setup of your Kubernetes learning environment and reflect on what you’re configuring.
By the end of this section, you will:
- Install and configure basic Kubernetes CLI tools
- Create your first local Kubernetes cluster using
kind - Deploy and inspect your first Pod
- Verify your setup is working for the labs ahead
Follow the official guide:
➡️ https://kubernetes.io/docs/tasks/tools/install-kubectl/
Verify:
kubectl version --clientFollow the official guide:
➡️ https://kind.sigs.k8s.io/docs/user/quick-start/
Verify:
kind versionkind create cluster --name grow-labCheck your nodes:
kubectl get nodeskubectl run nginx --image=nginx
kubectl get podsDescribe it:
kubectl describe pod nginxDelete it:
kubectl delete pod nginxWhen ready, move on to your first official lab:
👉 Kubernetes Fundamentals – Deploying a Pod and Deployment