Getting Started with MicroK8s (Kubernetes) Cluster
This article has not been completed yet. However, it may already contain helpful Information and therefore it has been published at this stage.
Download: https://microk8s.io/microk8s-installer.exe
bcdedit /set hypervisorlaunchtype auto
Reboot your workstation.
microk8s install
microk8s status --wait-ready
microk8s dashboard-proxy
Deploying Tutum — Hello World
microk8s kubectl create deployment hello-world --image=tutum/hello-world:latest
microk8s kubectl expose deployment hello-world --type=NodePort --port=80 --name=hello-world-service
microk8s kubectl port-forward -n default service/hello-world-service 8080:80