Skip to content

Instantly share code, notes, and snippets.

@h4n2k
Created March 24, 2019 03:05
Show Gist options
  • Save h4n2k/82ffe7a7ab4097d94c63831ae2cd272b to your computer and use it in GitHub Desktop.
Save h4n2k/82ffe7a7ab4097d94c63831ae2cd272b to your computer and use it in GitHub Desktop.
install minikube arch linux
egrep --color 'vmx|svm' /proc/cpuinfo
sudo pacman -Sy libvirt qemu ebtables dnsmasq
sudo usermod -a -G libvirt $(whoami)
newgrp libvirt
sudo systemctl start libvirtd.service
sudo systemctl enable libvirtd.service
sudo systemctl start virtlockd.service
sudo systemctl enable virtlockd.service
sudo pacman -Sy docker-machine
yay -Sy minikube-bin kubectl-bin
yay -Sy docker-machine-driver-kvm2
minikube version
whereis kubectl
kubectl -h
minikube start --vm-driver kvm2
minikube status
kubectl cluster-info
kubectl get nodes
kubectl get service
minikube ip
minikube dashboard
minikube dashboard --url
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment