Prerequisites for Windows
You must have the following setup on your PC:
- Podman
- Minikube
- Git
This requires a minimum of:
- 2 physical CPU cores
- 6 GB of free memory
For the MeshNetwork (Istio) Lab you need a minimum of:
- 4 physical CPU cores
- 9 GB of free memory
🚀 TASK: Install prerequisites on Windows
- 🌏 Detailed Documentation for the Task
Install CLI Tools
curl.exe -LO "https://dl.k8s.io/release/v1.26.0/bin/windows/amd64/kubectl.exe" - 🌏 Follow the official Documentation
Install Podman
Start Podman
podman machine init --cpus 4 --memory 6666podman machine start
- 🌏 Detailed Documentation for the Task
Install Minikube
- Download from here
Download Minikube
Start Minikube
minikube start --driver=podman --insecure-registry "10.0.0.0/24"
Install some addons we will need later
minikube addons enable registryminikube addons enable ingressminikube addons enable dashboardminikube addons list|grep enabled| dashboard | minikube | enabled ✅ | Kubernetes || default-storageclass | minikube | enabled ✅ | Kubernetes || ingress | minikube | enabled ✅ | Kubernetes || registry | minikube | enabled ✅ | Google || storage-provisioner | minikube | enabled ✅ | Google |