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: ingress/single-cluster/ingress-nginx/README.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
2
-
# GKE Ingress + NGNIX Ingress
2
+
# GKE Ingress + NGINX Ingress
3
3
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.
5
5
6
6
### Use-cases
7
7
@@ -12,7 +12,7 @@ GKE allows customers to deploy their own Ingress Controllers instead of the stan
12
12
13
13
-[Ingress for GKE](https://cloud.google.com/kubernetes-engine/docs/concepts/ingress)
14
14
-[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)
16
16
17
17
### Versions
18
18
@@ -24,7 +24,7 @@ NGINX is not one of the GKE offering, this is just an exmaple of using custom co
24
24
25
25
### Networking Manifests
26
26
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.
0 commit comments