From 85580dde3cf92a9a44eec39fc56c7e0afb7a99c9 Mon Sep 17 00:00:00 2001 From: kobayashi Date: Thu, 14 May 2020 12:06:05 -0400 Subject: [PATCH] Add ingress setup for minikube in docs --- docs/user-guide/kubernetes.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/user-guide/kubernetes.md b/docs/user-guide/kubernetes.md index 3db08c320..f0966031d 100644 --- a/docs/user-guide/kubernetes.md +++ b/docs/user-guide/kubernetes.md @@ -10,10 +10,14 @@ The config files used in this guide can be found in the [examples directory](htt 1. A working Kubernetes cluster. If you want to follow along with this guide, you should setup [minikube](https://kubernetes.io/docs/getting-started-guides/minikube/) on your machine, as it is the quickest way to get a local Kubernetes cluster setup for experimentation and development. +2. Setup ingress as an add-on. It can be enabled by the following command: + + `minikube addons enable ingress` + !!! note The guide is likely not fully adequate for a production-ready setup. -2. The `kubectl` binary should be [installed on your workstation](https://kubernetes.io/docs/getting-started-guides/minikube/#download-kubectl). +3. The `kubectl` binary should be [installed on your workstation](https://kubernetes.io/docs/getting-started-guides/minikube/#download-kubectl). ### Role Based Access Control configuration (Kubernetes 1.6+ only)