Minikube

From ArchWiki

Merge-arrows-2.pngThis article or section is a candidate for merging with List of applications.Merge-arrows-2.png

Notes: Not enough content to make an article. (Discuss in Talk:Minikube)

Minikube lets you quickly setup a local Kubernetes cluster. It supports the use of Virtual Machines, containers and even bare metal as its driver.

Minikube for Arch Linux

The package minikube is available from the community repositories. There is also minikube-gitAUR for those that prefer the latest development version.

QEMU in Minikube

To use QEMU in minikube, the following packages are required:

Additionally the current user needs to be in a `libvirt` group:

usermod -aG libvirt $(whoami)

Start the libvirtd.service unit and check its unit status for any issues.

Then set the kvm2 provider in minikube:

minikube config set driver kvm2

And start it:

minikube start