Skip to content

Instantly share code, notes, and snippets.

@tecnocrata
Forked from manojkarthick/minikube-hyperkit.sh
Created August 23, 2020 15:08
Show Gist options
  • Select an option

  • Save tecnocrata/24183dd0d97078bf1f109dc6e7d3e295 to your computer and use it in GitHub Desktop.

Select an option

Save tecnocrata/24183dd0d97078bf1f109dc6e7d3e295 to your computer and use it in GitHub Desktop.
Use Hyperkit with minikube instead of virtualbox
#!/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