@adolf
To install minikube on Ubuntu, you need to have a few prerequisites installed:
Once you have these prerequisites installed, you can install minikube by running the following commands:
1
|
curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube
|
1
|
sudo mv minikube /usr/local/bin/ |
1
|
minikube version |
You should see the version number of minikube that you installed.
Once minikube is installed, you can start a local Kubernetes cluster by running the following command:
1
|
minikube start
|
This will start a local Kubernetes cluster using the hypervisor that you installed earlier. You can then use kubectl to interact with the cluster.
For more information on using minikube, you can refer to the minikube documentation: https://minikube.sigs.k8s.io/docs/