You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/en/docs/concepts/services-networking/ingress.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,15 @@ has all the information needed to configure a load balancer or proxy server. Mos
88
88
contains a list of rules matched against all incoming requests. Ingress resource only supports rules
89
89
for directing HTTP(S) traffic.
90
90
91
+
If the `ingressClassName` is omitted, a [default Ingress class](#default-ingress-class)
92
+
should be defined.
93
+
94
+
There are some ingress controllers, that work without the definition of a
95
+
default `IngressClass`. For example, the Ingress-NGINX controller can be
96
+
configured with a [flag](https://kubernetes.github.io/ingress-nginx/#what-is-the-flag-watch-ingress-without-class)
97
+
`--watch-ingress-without-class`. It is [recommended](https://kubernetes.github.io/ingress-nginx/#i-have-only-one-instance-of-the-ingresss-nginx-controller-in-my-cluster-what-should-i-do) though, to specify the
98
+
default `IngressClass` as shown [below](#default-ingress-class).
99
+
91
100
### Ingress rules
92
101
93
102
Each HTTP rule contains the following information:
@@ -339,6 +348,14 @@ an `ingressClassName` specified. You can resolve this by ensuring that at most 1
339
348
IngressClass is marked as default in your cluster.
340
349
{{< /caution >}}
341
350
351
+
There are some ingress controllers, that work without the definition of a
352
+
default `IngressClass`. For example, the Ingress-NGINX controller can be
353
+
configured with a [flag](https://kubernetes.github.io/ingress-nginx/#what-is-the-flag-watch-ingress-without-class)
354
+
`--watch-ingress-without-class`. It is [recommended](https://kubernetes.github.io/ingress-nginx/#i-have-only-one-instance-of-the-ingresss-nginx-controller-in-my-cluster-what-should-i-do) though, to specify the
0 commit comments