Skip to content

Instantly share code, notes, and snippets.

@russomi
Forked from vfarcic/minikube.sh
Created February 1, 2021 20:04
Show Gist options
  • Save russomi/75bd5e4dd0ce47897c98f86a9605e703 to your computer and use it in GitHub Desktop.
Save russomi/75bd5e4dd0ce47897c98f86a9605e703 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