Skip to content

Commit c8b582a

Browse files
authored
Merge pull request kubernetes#23844 from didier-durand/Ingress_EN
fixing some typos / spelling issues in Ingress.md
2 parents 73ba6e2 + 68a018e commit c8b582a

File tree

1 file changed

+5
-5
lines changed
  • content/en/docs/concepts/services-networking

1 file changed

+5
-5
lines changed

content/en/docs/concepts/services-networking/ingress.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ Traffic routing is controlled by rules defined on the Ingress resource.
3737
[ Services ]
3838
```
3939

40-
An Ingress may be configured to give Services externally-reachable URLs, load balance traffic, terminate SSL / TLS, and offer name based virtual hosting. An [Ingress controller](/docs/concepts/services-networking/ingress-controllers) is responsible for fulfilling the Ingress, usually with a load balancer, though it may also configure your edge router or additional frontends to help handle the traffic.
40+
An Ingress may be configured to give Services externally-reachable URLs, load balance traffic, terminate SSL / TLS, and offer name-based virtual hosting. An [Ingress controller](/docs/concepts/services-networking/ingress-controllers) is responsible for fulfilling the Ingress, usually with a load balancer, though it may also configure your edge router or additional frontends to help handle the traffic.
4141

4242
An Ingress does not expose arbitrary ports or protocols. Exposing services other than HTTP and HTTPS to the internet typically
4343
uses a service of type [Service.Type=NodePort](/docs/concepts/services-networking/service/#nodeport) or
4444
[Service.Type=LoadBalancer](/docs/concepts/services-networking/service/#loadbalancer).
4545

4646
## Prerequisites
4747

48-
You must have an [ingress controller](/docs/concepts/services-networking/ingress-controllers) to satisfy an Ingress. Only creating an Ingress resource has no effect.
48+
You must have an [Ingress controller](/docs/concepts/services-networking/ingress-controllers) to satisfy an Ingress. Only creating an Ingress resource has no effect.
4949

5050
You may need to deploy an Ingress controller such as [ingress-nginx](https://kubernetes.github.io/ingress-nginx/deploy/). You can choose from a number of
5151
[Ingress controllers](/docs/concepts/services-networking/ingress-controllers).
@@ -107,7 +107,7 @@ routed to your default backend.
107107
### Resource backends {#resource-backend}
108108

109109
A `Resource` backend is an ObjectRef to another Kubernetes resource within the
110-
same namespace of the Ingress object. A `Resource` is a mutually exclusive
110+
same namespace as the Ingress object. A `Resource` is a mutually exclusive
111111
setting with Service, and will fail validation if both are specified. A common
112112
usage for a `Resource` backend is to ingress data to an object storage backend
113113
with static assets.
@@ -235,7 +235,7 @@ IngressClass resource will ensure that new Ingresses without an
235235
If you have more than one IngressClass marked as the default for your cluster,
236236
the admission controller prevents creating new Ingress objects that don't have
237237
an `ingressClassName` specified. You can resolve this by ensuring that at most 1
238-
IngressClasses are marked as default in your cluster.
238+
IngressClass is marked as default in your cluster.
239239
{{< /caution >}}
240240

241241
## Types of Ingress
@@ -491,7 +491,7 @@ You can achieve the same outcome by invoking `kubectl replace -f` on a modified
491491

492492
## Failing across availability zones
493493

494-
Techniques for spreading traffic across failure domains differs between cloud providers.
494+
Techniques for spreading traffic across failure domains differ between cloud providers.
495495
Please check the documentation of the relevant [Ingress controller](/docs/concepts/services-networking/ingress-controllers) for details.
496496

497497
## Alternatives

0 commit comments

Comments
 (0)