Skip to content

Instantly share code, notes, and snippets.

@rrichards
Forked from vfarcic/minikube.sh
Created May 29, 2018 00:49
Show Gist options
  • Save rrichards/ae45dfd258bc0ff2ee51bb82cc50b1d2 to your computer and use it in GitHub Desktop.
Save rrichards/ae45dfd258bc0ff2ee51bb82cc50b1d2 to your computer and use it in GitHub Desktop.
######################
# Create The Cluster #
######################
# Make sure that your minikube version is v0.26 or higher
minikube start \
--vm-driver virtualbox \
--cpus 2 \
--memory 2048
minikube addons enable ingress
minikube addons enable storage-provisioner
minikube addons enable default-storageclass
#######################
# Destroy the cluster #
#######################
minikube delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment