Installing minikube
Minikube is a popular cross-platform and lightweight Kubernetes implementation that helps users quickly create a single-node local Kubernetes cluster. minikube supports multiple runtimes, including CRI-O, container, and Docker. It can be deployed as a Virtual Machine (VM), a container, or on bare metal. Since Pachyderm supports the Docker runtime only, we will cover how to use the Docker container runtime and deploy it as a container. For additional configuration details, you can refer to the official Docker documentation at https://minikube.sigs.k8s.io/docs/start/. Let's install the latest version of minikube:
- Execute the following commands to install
minikube
on your computer.
If are using Linux, run the following command:
$ curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 $ sudo install minikube-linux-amd64 /usr/local/bin/minikube
If you are on Windows (Chocolatey package manager is required), run...