Install kubectl
choco install kubernetes-cli
Run kubectl version
to verify that the version you’ve installed is sufficiently up-to-date.
Configure kubectl to use a remote Kubernetes cluster:
cd C:\users\yourusername (Or wherever your %HOME% directory is)
mkdir .kube
cd .kube
New-Item config -type file
Download MiniKube
https://github.com/kubernetes/minikube/releases
Change the name to minikube.exe
, add it to a folder somewhere and add that folder to your PATH.
Running Minikube
minikube start
- Start your cluster
kubectl get nodes
- View the nodes
minikube dashboard
- Open the dashboard in a browser