Last active
March 22, 2019 11:16
-
-
Save davidthewatson/a4c2744d8847ee1b3b7508cf810891e9 to your computer and use it in GitHub Desktop.
Install minikube using kvm2 on arch based linux distros such as manjaro
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo pacman -Sy libvirt qemu-headless ebtables dnsmasq | |
sudo systemctl enable libvirtd.service | |
sudo systemctl enable virtlogd.service | |
sudo pacman -Sy docker-machine | |
yaourt -Sy minikube-bin kubectl-bin | |
yaourt -Sy docker-machine-driver-kvm2 | |
# start sans proxy | |
minikube start --vm-driver kvm2 | |
# start with proxy | |
minikube start --vm-driver kvm2 --docker-env http_proxy=http://proxy.cat.com:80 --docker-env https_proxy=http://proxy.cat.com:80 --docker-env no_proxy="localhost,127.0.0.1,192.168.39.1/24,10.96.0.0/12" | |
minikube dashboard --url |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
http://blog.programmableproduction.com/2018/03/08/Archlinux-Setup-Minikube-using-KVM/