Skip to content

Commit

Permalink
Merge pull request #124 from rpressiani/patch-1
Browse files Browse the repository at this point in the history
Fixed port numbers in ingress-external-basic README
  • Loading branch information
bowei authored Jan 20, 2023
2 parents cb8d374 + 6c7ffce commit ffa0280
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ingress/single-cluster/ingress-external-basic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ External Ingress on GKE deploys a global External HTTP(S) Load Balancer for publ

### Networking Manifests

In this example an external Ingress resource matches for HTTP traffic with `foo.example.com` and sends it to the `foo` Service at port 80. A public IP is automatically provisioned by the Ingress controller which listens for internet traffic on port 80. 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.
In this example an external Ingress resource matches for HTTP traffic with `foo.example.com` and sends it to the `foo` Service at port 8080. A public IP is automatically provisioned by the Ingress controller which listens for internet traffic on port 80. 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.


```yaml
Expand Down Expand Up @@ -58,7 +58,7 @@ metadata:
cloud.google.com/neg: '{"ingress": true}'
spec:
ports:
- port: 80
- port: 8080
targetPort: 8080
name: http
selector:
Expand Down

0 comments on commit ffa0280

Please sign in to comment.