Skip to content

Instantly share code, notes, and snippets.

@SoulSu
Created June 27, 2019 02:13
Show Gist options
  • Save SoulSu/c80bc05e1f35ca9dda37dc9fb91c365b to your computer and use it in GitHub Desktop.
Save SoulSu/c80bc05e1f35ca9dda37dc9fb91c365b to your computer and use it in GitHub Desktop.
windows 安装minikube
#!/bin/bash
set HTTP_PROXY=http://127.0.0.1:1080
set HTTPS_PROXY=http://127.0.0.1:1080
set NO_PROXY=localhost,127.0.0.1,10.96.0.0/12,192.168.99.1/24,192.168.39.0/24,10.5.0.0/16
minikube start --vm-driver=hyperv --hyperv-virtual-switch=minikube --docker-env=HTTP_PROXY=$HTTP_PROXY --docker-env HTTPS_PROXY=$HTTPS_PROXY --docker-env NO_PROXY=$NO_PROXY --v=7 --alsologtostderr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment