This is a quick Fedora Linux specific version of the upstream Hello Minikube guide. It uses Golang as the hello world application and tries to call out a few useful things along the way.
This is a follow up to: Kubernetes Hello Minikube Fedora 25
Permalink Dependencies You’ll need golang, kvm and libvirt along with proper group membership:
sudo dnf install golang libvirt-daemon-kvm sudo usermod -a -G libvirt $(whoami) newgrp libvirt Permalink Install minikube itself curl -Lo minikube \ https://github.
Read more...
This is a quick Fedora Linux specific version of the upstream Hello Minikube guide. It uses Golang as the hello world application and tries to call out a few useful things along the way.
Permalink Dependencies You’ll need golang, kvm and libvirt along with proper group membership:
sudo dnf install golang libvirt-daemon-kvm sudo usermod -a -G libvirt $(whoami) newgrp libvirt Permalink Install minikube itself curl -Lo minikube \ https://storage.googleapis.com/minikube/releases/v0.17.1/minikube-linux-amd64 \ && chmod +x minikube \ && sudo mv minikube /usr/local/bin/ Reference: https://kubernetes.
Read more...