From daacdbb81576e1318504e9d73a16536aba330784 Mon Sep 17 00:00:00 2001 From: Amit Watve Date: Tue, 10 Dec 2019 23:34:56 -0800 Subject: [PATCH] Minor fixes and add a basic example. --- site/content/docs/user/ingress-nginx.md | 56 --------- site/content/docs/user/ingress.md | 144 ++++++++++++++++++++++++ 2 files changed, 144 insertions(+), 56 deletions(-) delete mode 100644 site/content/docs/user/ingress-nginx.md create mode 100644 site/content/docs/user/ingress.md diff --git a/site/content/docs/user/ingress-nginx.md b/site/content/docs/user/ingress-nginx.md deleted file mode 100644 index 00b00580a4..0000000000 --- a/site/content/docs/user/ingress-nginx.md +++ /dev/null @@ -1,56 +0,0 @@ -# Ingress Nginx - -Ingress Nginx in kind works by exposing ports `80(http)` and `443(https)` -from the host to the nginx controller using hostPorts. - -## Create A Cluster with Ingress Nginx - -The following shell script will create a kind cluster deploy -the standard ingress-nginx components and apply the necessary patches. - -```bash -#!/bin/sh -set -o errexit - -# Create cluster with hostPorts opened for http and https -cat <