diff --git a/index.html b/index.html index dfbc01bff..6406132ea 100644 --- a/index.html +++ b/index.html @@ -47,7 +47,7 @@ DESCRIPTION: resource may be marked as default, which can be used to set a default value for this field. For more information, refer to the IngressClass documentation. - the spec.ingressClassName behavior has precedence over the annotation.

I have only one instance of the Ingresss-NGINX controller in my cluster. What should I do ?

In this case, you need to make your Controller aware of the objects. If you have several Ingress objects and they don't yet have the ingressClassName field, or the ingress annotation (kubernetes.io/ingress.class), then you should start your ingress-controller with the flag --watch-ingress-without-class=true .

You can configure your helm chart installation's values file with .controller.watchIngressWithoutClass: true.

We highly recommend that you create the ingressClass as shown below:

apiVersion: networking.k8s.io/v1
+
the spec.ingressClassName behavior has precedence over the annotation.

I have only one instance of the Ingresss-NGINX controller in my cluster. What should I do ?

In this case, you need to make your Controller aware of the objects. If you have several Ingress objects and they don't yet have the ingressClassName field, or the ingress annotation (kubernetes.io/ingress.class), then you should start your ingress-controller with the flag --watch-ingress-without-class=true .

You can configure your helm chart installation's values file with .controller.watchIngressWithoutClass: true.

We highly recommend that you create the ingressClass as shown below:

apiVersion: networking.k8s.io/v1
 kind: IngressClass
 metadata:
   labels:
@@ -57,7 +57,7 @@ metadata:
     ingressclass.kubernetes.io/is-default-class: "true"
 spec:
   controller: k8s.io/ingress-nginx
-
And add the value "spec.ingressClassName=nginx" in your Ingress objects

I have multiple ingress objects in my cluster. What should I do ?

What is the flag '--watch-without-ingress-class' ?