Created
November 26, 2018 10:42
-
-
Save manojkarthick/fbf85e36697f277e83d4b3eb3ab12b4a to your computer and use it in GitHub Desktop.
Use Hyperkit with minikube instead of virtualbox
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 | |
| # Works with: | |
| # Docker 18.06.1-ce, build e68fc7a | |
| # Kubernetes v1.10.0 | |
| # minikube v0.30.0 | |
| # Download minikube hyperkit driver and install | |
| curl -LO https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-hyperkit \ | |
| && sudo install -o root -g wheel -m 4755 docker-machine-driver-hyperkit /usr/local/bin/ | |
| # Start minikube using hyperkit | |
| minikube start --vm-driver=hyperkit | |
| # Check if minikube is using hyperkit | |
| cat ~/.minikube/machines/minikube/config.json | jq '.DriverName' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment