I like the chocolatey package manager: https://chocolatey.org/
choco install docker-for-windows
https://docs.docker.com/docker-for-mac/install/
Opens Settings -> General Tab Small print at the bottom switch to Edge verson.
Kubernetes Tab -> Enable Kubernetes
More info: https://blog.docker.com/2018/01/docker-windows-desktop-now-kubernetes/
kubectl is the main cli interface for k8s
choco install kubernetes-cli
brew install kubectl
Helm is a tool to launch prebuilt catalogs into k8s.
choco install kubernetes-helm
brew install kubernetes-helm
Docker-for-* doesn't come with a configured ingress controller. Use helm
to launch one.
helm init
helm install stable/nginx-ingress --name ingress-nginx --namespace ingress-nginx