From 8611ecb7c97ce286e2e171a7e6e6aa50d2398b0c Mon Sep 17 00:00:00 2001 From: Maxence Boutet <52334444+mboutet@users.noreply.github.com> Date: Tue, 19 Oct 2021 23:37:57 -0400 Subject: [PATCH] Fix not rendered markdown list (#7825) --- docs/index.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/index.md b/docs/index.md index cc3d2cb58..1154ba32b 100644 --- a/docs/index.md +++ b/docs/index.md @@ -160,7 +160,8 @@ Ingress-Nginx-Controller-nginx1 with `k8s.io/ingress-nginx1` Ingress-Nginx-Controller-nginx2 with `k8s.io/ingress-nginx2` Then, when you create an Ingress Object with IngressClassName = `ingress-nginx2`, it will look for controllers with `controller-class=k8s.io/ingress-nginx2` and as `Ingress-Nginx-Controller-nginx2` is watching objects that points to `ingressClass="k8s.io/ingress-nginx2`, it will serve that object, while `Ingress-Nginx-Controller-nginx1` will ignore the ingress object. -Bear in mind that, if your `Ingress-Nginx-Controller-nginx2` is started with the flag `--watch-ingress-without-class=true`, then it will serve ; +Bear in mind that, if your `Ingress-Nginx-Controller-nginx2` is started with the flag `--watch-ingress-without-class=true`, then it will serve: + - objects without ingress-class - objects with the annotation configured in flag `--ingress-class` and same class value - and also objects pointing to the ingressClass that have the same .spec.controller as configured in `--controller-class`