January 2018
Intermediate to advanced
318 pages
7h 6m
English
Unlike the macOS and Windows version, we will not be using a package manager to install Minikube on Ubuntu 17.04. Instead, we will just be downloading the binaries directly from the project page. To do this, simply run the following command:
$ curl -Lo minikube https://storage.googleapis.com/minikube/releases/v0.22.2/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
Minikube will be downloaded, will have execute permissions set, and will be moved to /usr/local/bin/ so it is in a system path.
Now that Minikube is installed, we need to download kubectl. During the macOS and Windows installation, this was taken care of by the package manager; luckily, the process is pretty much the same as the command ...
Read now
Unlock full access