Last active
September 15, 2017 05:30
-
-
Save pyar6329/787b08c20a31cced8a2337b33d922e41 to your computer and use it in GitHub Desktop.
minikube startup
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
# docker for macを入れる | |
$ brew install docker-machine-driver-xhyve --without-docker-machine | |
$ sudo chown root:wheel /usr/local/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve | |
$ sudo chmod u+s /usr/local/opt/docker-machine-driver-xhyve/bin/docker-machine-driver-xhyve | |
$ rm -rf /usr/local/bin/VBox* /usr/local/bin/VirtualBox # virtualbox入れた場合はアンインストールして消す | |
$ minikube start --vm-driver=xhyve --memory=2048 --cpus=4 | |
$ kubectl config use-context minikube |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment