Skip to content

Commit 9b1e8a3

Browse files
committed
nginx-recipe: Fix some small typo errors
1 parent 8e96e19 commit 9b1e8a3

File tree

1 file changed

+8
-8
lines changed
  • ingress/single-cluster/ingress-nginx

1 file changed

+8
-8
lines changed

ingress/single-cluster/ingress-nginx/README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

2-
# GKE Ingress + NGNIX Ingress
2+
# GKE Ingress + NGINX Ingress
33

4-
GKE allows customers to deploy their own Ingress Controllers instead of the standard GCP offering. NGNIX is a popular option because of it's simplicity and open source nature. This example deploys an application on GKE and exposes the application with an NGNIX controller. See the [ingress-ngnix.yaml](./ingress-nginx.yaml) manifest for full deployment spec.
4+
GKE allows customers to deploy their own Ingress Controllers instead of the standard GCP offering. NGINX is a popular option because of it's simplicity and open source nature. This example deploys an application on GKE and exposes the application with an NGINX controller. See the [ingress-nginx.yaml](./ingress-nginx.yaml) manifest for full deployment spec.
55

66
### Use-cases
77

@@ -12,7 +12,7 @@ GKE allows customers to deploy their own Ingress Controllers instead of the stan
1212

1313
- [Ingress for GKE](https://cloud.google.com/kubernetes-engine/docs/concepts/ingress)
1414
- [Ingress with NGINX](https://cloud.google.com/community/tutorials/nginx-ingress-gke)
15-
- [NGNIX on GKE](https://kubernetes.github.io/ingress-nginx/deploy/#gce-gke)
15+
- [NGINX on GKE](https://kubernetes.github.io/ingress-nginx/deploy/#gce-gke)
1616

1717
### Versions
1818

@@ -24,7 +24,7 @@ NGINX is not one of the GKE offering, this is just an exmaple of using custom co
2424

2525
### Networking Manifests
2626

27-
In this example an external Ingress resource matches for HTTP traffic with `foo.example.com` for path `/foo` and sends it to the `foo` Service at port 8080. A public IP address is automatically provisioned by the Ngnix controller which listens for traffic on port 8080. The Ingress resource below shows that there is one host match. Any traffic which does not match this is sent to the default backend to provide 404 responses.
27+
In this example an external Ingress resource matches for HTTP traffic with `foo.example.com` for path `/foo` and sends it to the `foo` Service at port 8080. A public IP address is automatically provisioned by the Nginx controller which listens for traffic on port 8080. The Ingress resource below shows that there is one host match. Any traffic which does not match this is sent to the default backend to provide 404 responses.
2828

2929

3030
```yaml
@@ -74,7 +74,7 @@ spec:
7474
$ git clone https://github.com/GoogleCloudPlatform/gke-networking-recipes.git
7575
Cloning into 'gke-networking-recipes'...
7676
77-
$ cd gke-networking-recipes/ingress/single-cluster/ingress-ngnix
77+
$ cd gke-networking-recipes/ingress/single-cluster/ingress-nginx
7878
```
7979
2. Ensure that your user has cluster-admin permissions on the cluster. This can be done with the following command:
8080

@@ -83,13 +83,13 @@ kubectl create clusterrolebinding cluster-admin-binding \
8383
--clusterrole cluster-admin \
8484
--user $(gcloud config get-value account)
8585
```
86-
3. Install the ingress controller
86+
3. Install the ingress controller
8787

8888
```
8989
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.1.0/deploy/static/provider/cloud/deploy.yaml
9090
```
9191
92-
4. Deploy the Ingress, Deployment, and Service resources in the [ingress-ngnix.yaml](./ingress-nginx.yaml) manifest.
92+
4. Deploy the Ingress, Deployment, and Service resources in the [ingress-nginx.yaml](./ingress-nginx.yaml) manifest.
9393
9494
```bash
9595
$ kubectl apply -f ingress-nginx.yaml
@@ -138,4 +138,4 @@ $ curl -H "host: foo.example.com" 34.102.236.246/foo
138138
```bash
139139
kubectl delete -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.1.0/deploy/static/provider/cloud/deploy.yaml
140140
kubectl delete -f ingress-nginx.yaml
141-
```
141+
```

0 commit comments

Comments
 (0)