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