Skip to content

Commit eb22448

Browse files
committed
Fix catalog URLs
1 parent 7bf2458 commit eb22448

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

website/docs/fundamentals/exposing/ingress/multiple-ingress.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Then we'll create a separate Ingress for the `catalog` component that also lever
1919
manifests/modules/exposing/ingress/multiple-ingress/ingress-catalog.yaml
2020
```
2121

22-
This Ingress is also configuring rules to route requests prefixed with `/catalogue` to the `catalog` component.
22+
This Ingress is also configuring rules to route requests prefixed with `/catalog` to the `catalog` component.
2323

2424
Apply these manifests to the cluster:
2525

website/docs/networking/vpc-cni/network-policies/ingress.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Before applying the policy, the 'catalog' service can be accessed by both the 'u
1515
$ kubectl exec deployment/ui -n ui -- curl -v catalog.catalog/health --connect-timeout 5
1616
Trying XXX.XXX.XXX.XXX:80...
1717
* Connected to catalog.catalog (XXX.XXX.XXX.XXX) port 80 (#0)
18-
> GET /catalogue HTTP/1.1
18+
> GET /health HTTP/1.1
1919
> Host: catalog.catalog
2020
> User-Agent: curl/7.88.1
2121
> Accept: */*
@@ -30,7 +30,7 @@ As well as the 'orders' component:
3030
$ kubectl exec deployment/orders -n orders -- curl -v catalog.catalog/health --connect-timeout 5
3131
Trying XXX.XXX.XXX.XXX:80...
3232
* Connected to catalog.catalog (XXX.XXX.XXX.XXX) port 80 (#0)
33-
> GET /catalogue HTTP/1.1
33+
> GET /health HTTP/1.1
3434
> Host: catalog.catalog
3535
> User-Agent: curl/7.88.1
3636
> Accept: */*
@@ -57,7 +57,7 @@ Now, we can validate the policy by confirming that we can still access the 'cata
5757
$ kubectl exec deployment/ui -n ui -- curl -v catalog.catalog/health --connect-timeout 5
5858
Trying XXX.XXX.XXX.XXX:80...
5959
* Connected to catalog.catalog (XXX.XXX.XXX.XXX) port 80 (#0)
60-
> GET /catalogue HTTP/1.1
60+
> GET /health HTTP/1.1
6161
> Host: catalog.catalog
6262
> User-Agent: curl/7.88.1
6363
> Accept: */*

0 commit comments

Comments
 (0)