Skip to content

Instantly share code, notes, and snippets.

@beeceej
beeceej / minikube_on_fedora26_with_kvm.md
Created September 22, 2017 01:56
Minikube on Fedora26 with KVM
  • To use minikube on Fedora 26, you must install KVM (Kernel-Based-Virtal-Machine)
    • sudo dnf install qemu-kvm libvirt virt-install bridge-utils Install dependencies
    • lsmod | grep kvm Ensure modules are loaded
    • systemctl start libvirtd
    • systemctl enable libvirtd
    • nmcli con add type bridge autoconnect yes con-name br0 ifname br0 Configure Bridge Networking for KVM
    • nmcli con mod br0 ipv4.addresses 10.0.0.30/24 ipv4.method manual set IP address for [br0]
    • nmcli con mod br0 ipv4.gateway 10.0.0.1 set Gateway for [br0]
    • nmcli con mod br0 ipv4.dns 10.0.0.1 set DNS for [br0]
    • nmcli con Make note of current active bridge ($YOUR_BRIDGE)