Installing Minikube on Linux: we will learn how to install Minikube on Linux (Ubuntu 16.04): Install the hypervisor (VirtualBox), if you haven't done so already $ sudo apt-get install virtualbox Install Minikube We can download the latest release from the Minikube release page . Once downloaded, we need to make it executable and copy it in the PATH : $ curl -Lo minikube https://github.com/kubernetes/minikube/releases/download/v0.33.1/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/ Start Minikube: We can start Minikube with the minikube start command: $ minikube start Starting local Kubernetes v1.9.0 cluster... Starting VM... Downloading Minikube ISO 142.22 MB / 142.22 MB [============================================] 100.00% 0s Getting VM IP address... Moving files into cluster... Downloading localkube binary 162.41 MB / 162.41 MB [=========...
This blog show the step-by-step installation of various tools of emerging technologies..