What is minikube?
The installation and deployment of kubernetes clusters is a hurdle for many beginners. To facilitate development and experience of kubernetes, The kubernetes open-source community provides minikube that can be deployed locally.
Minikube is a tool that allows you to run kubernetes locally. The principle is to run a single-node kubernetes cluster in a Virtual Machine (Virtual Machine). This cluster is mainly used for development and testing purposes, rather than the production environment.
Although there are limits such as failure to start production clusters and lack of high availability single-node machines, it is enough for beginners and experienced kubernetes users.
When I install kyma Based on minikube, I receive the following prompt:
Your minikube is in v0.30.0.28.2 is ororted version of minikube. Install supported version!
Therefore, I need to install minukube of the specified version v0.28.2.
Solution:
Curl-Lo minikube https://storage.googleapis.com/minikube/releases/v0.28.2/minikube-linux-amd64 & chmod + x minikube & sudo MV minikube/usr/local/bin/
In fact, v0.28.2 is included in the curl parameter.
For more original Jerry articles, follow the Public Account "Wang zixi ":
Install the specified version of minikube