Created
June 27, 2019 02:13
-
-
Save SoulSu/c80bc05e1f35ca9dda37dc9fb91c365b to your computer and use it in GitHub Desktop.
windows 安装minikube
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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