Skip to content

Instantly share code, notes, and snippets.

@aliartiza75
Last active March 21, 2019 07:15
Show Gist options
  • Save aliartiza75/3a34f059de62c7de04727dae6a363ea8 to your computer and use it in GitHub Desktop.
Save aliartiza75/3a34f059de62c7de04727dae6a363ea8 to your computer and use it in GitHub Desktop.
This gist contains the guideline to install minikube locally
# Install Minikube on Linux by downloading a static binary:
$ curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \
&& chmod +x minikube
# To add the Minikube executable to your path:
$ sudo cp minikube /usr/local/bin && rm minikube
# To start minikube on local machine. The vm-driver's none value only need linux env and docker engine, while other params need
# the hypervisor to be enabled, it is time consuming.
$ minikube start --vm-driver=none
# HELM installation
# There are two ways to install helm
# 1) Using binaries
Link to binaries is given on this link: https://github.com/helm/helm/tags
# 2) Using the snap
sudo snap install helm --classic
https://helm.sh/docs/using_helm/#from-the-binary-releases
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment