@@ -73,7 +73,7 @@ Make sure you review your Ingress controller's documentation to understand the c
73
73
74
74
A minimal Ingress resource example:
75
75
76
- {{% code file="service/networking/minimal-ingress.yaml" %}}
76
+ {{% code_sample file="service/networking/minimal-ingress.yaml" %}}
77
77
78
78
An Ingress needs ` apiVersion ` , ` kind ` , ` metadata ` and ` spec ` fields.
79
79
The name of an Ingress object must be a valid
@@ -140,7 +140,7 @@ setting with Service, and will fail validation if both are specified. A common
140
140
usage for a ` Resource ` backend is to ingress data to an object storage backend
141
141
with static assets.
142
142
143
- {{% code file="service/networking/ingress-resource-backend.yaml" %}}
143
+ {{% code_sample file="service/networking/ingress-resource-backend.yaml" %}}
144
144
145
145
After creating the Ingress above, you can view it with the following command:
146
146
@@ -229,7 +229,7 @@ equal to the suffix of the wildcard rule.
229
229
| ` *.foo.com ` | ` baz.bar.foo.com ` | No match, wildcard only covers a single DNS label |
230
230
| ` *.foo.com ` | ` foo.com ` | No match, wildcard only covers a single DNS label |
231
231
232
- {{% code file="service/networking/ingress-wildcard-host.yaml" %}}
232
+ {{% code_sample file="service/networking/ingress-wildcard-host.yaml" %}}
233
233
234
234
## Ingress class
235
235
@@ -238,7 +238,7 @@ configuration. Each Ingress should specify a class, a reference to an
238
238
IngressClass resource that contains additional configuration including the name
239
239
of the controller that should implement the class.
240
240
241
- {{% code file="service/networking/external-lb.yaml" %}}
241
+ {{% code_sample file="service/networking/external-lb.yaml" %}}
242
242
243
243
The ` .spec.parameters ` field of an IngressClass lets you reference another
244
244
resource that provides configuration related to that IngressClass.
@@ -369,7 +369,7 @@ configured with a [flag](https://kubernetes.github.io/ingress-nginx/#what-is-the
369
369
` --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
370
370
default `IngressClass` :
371
371
372
- {{% code file="service/networking/default-ingressclass.yaml" %}}
372
+ {{% code_sample file="service/networking/default-ingressclass.yaml" %}}
373
373
374
374
# # Types of Ingress
375
375
@@ -379,7 +379,7 @@ There are existing Kubernetes concepts that allow you to expose a single Service
379
379
(see [alternatives](#alternatives)). You can also do this with an Ingress by specifying a
380
380
*default backend* with no rules.
381
381
382
- {{% code file="service/networking/test-ingress.yaml" %}}
382
+ {{% code_sample file="service/networking/test-ingress.yaml" %}}
383
383
384
384
If you create it using `kubectl apply -f` you should be able to view the state
385
385
of the Ingress you added :
@@ -411,7 +411,7 @@ down to a minimum. For example, a setup like:
411
411
412
412
It would require an Ingress such as:
413
413
414
- {{% code file="service/networking/simple-fanout-example.yaml" %}}
414
+ {{% code_sample file="service/networking/simple-fanout-example.yaml" %}}
415
415
416
416
When you create the Ingress with `kubectl apply -f`:
417
417
@@ -456,7 +456,7 @@ Name-based virtual hosts support routing HTTP traffic to multiple host names at
456
456
The following Ingress tells the backing load balancer to route requests based on
457
457
the [ Host header] ( https://tools.ietf.org/html/rfc7230#section-5.4 ) .
458
458
459
- {{% code file="service/networking/name-virtual-host-ingress.yaml" %}}
459
+ {{% code_sample file="service/networking/name-virtual-host-ingress.yaml" %}}
460
460
461
461
If you create an Ingress resource without any hosts defined in the rules, then any
462
462
web traffic to the IP address of your Ingress controller can be matched without a name based
@@ -467,7 +467,7 @@ requested for `first.bar.com` to `service1`, `second.bar.com` to `service2`,
467
467
and any traffic whose request host header doesn't match ` first.bar.com `
468
468
and ` second.bar.com ` to ` service3 ` .
469
469
470
- {{% code file="service/networking/name-virtual-host-ingress-no-third-host.yaml" %}}
470
+ {{% code_sample file="service/networking/name-virtual-host-ingress-no-third-host.yaml" %}}
471
471
472
472
### TLS
473
473
@@ -505,7 +505,7 @@ certificates would have to be issued for all the possible sub-domains. Therefore
505
505
section.
506
506
{{< /note >}}
507
507
508
- {{% code file="service/networking/tls-example-ingress.yaml" %}}
508
+ {{% code_sample file="service/networking/tls-example-ingress.yaml" %}}
509
509
510
510
{{< note >}}
511
511
There is a gap between TLS features supported by various Ingress
0 commit comments