January 2018
Intermediate to advanced
336 pages
7h 56m
English
The simplest way to get started with Kubernetes and run locally on a single machine is to use Minikube (https://github.com/kubernetes/minikube). To setup Minikube, use the following installation script:
% curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/
The preceding command downloads the latest release of Minikube script and makes it available on the path by copying it to the /usr/local/bin directory. Minikube also requires kube-ctl to interact with the Kubernetes cluster. To set up kube-ctl, use the installation script of kube-ctl, as shown here:
# download kube-ctl script% curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl ...
Read now
Unlock full access