Skip to content

Instantly share code, notes, and snippets.

@aofry
Last active January 14, 2018 11:38
Show Gist options
  • Save aofry/7f0bcef83bae37a4b5fe38ed603d7d6f to your computer and use it in GitHub Desktop.
Save aofry/7f0bcef83bae37a4b5fe38ed603d7d6f to your computer and use it in GitHub Desktop.
minikube with helm
# download binaries
wget https://storage.googleapis.com/kubernetes-release/release/v1.9.0/bin/windows/amd64/kubectl.exe
mv kubectl.exe mv /usr/local/bin/
wget https://github.com/kubernetes/minikube/releases/download/v0.24.1/minikube-windows-amd64
mv minikube-windows-amd64 /usr/local/bin/minikube.exe
wget https://storage.googleapis.com/kubernetes-helm/helm-v2.7.2-windows-amd64.tar.gz
tar xvzf helm-v2.7.2-windows-amd64.tar.gz
mv windows-amd64/helm.exe /usr/local/bin/
# start minikube
minikube start
kubectl get svc,nodes
# setup helm
helm init
helm repo update
helm repo list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment