Skip to content

Commit 08e812c

Browse files
authored
fix broker url in eventing getting-started.md (#2758)
1 parent 28fd0eb commit 08e812c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/eventing/getting-started.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ The [broker](./broker/README.md#broker) allows you to route events to different
4747
This shows information about your broker. If the broker is working correctly, it shows a `READY` status of `True`:
4848
4949
```
50-
NAME READY REASON URL AGE
51-
default True http://default-broker.event-example.svc.cluster.local 1m
50+
NAME READY REASON URL AGE
51+
default True http://broker-ingress.knative-eventing.svc.cluster.local/event-example/default 1m
5252
```
5353
5454
If `READY` is `False`, wait a few moments and then run the command again.
@@ -266,7 +266,7 @@ EOF
266266
- To make the first request, which creates an event that has the `type`
267267
`greeting`, run the following in the SSH terminal:
268268
```
269-
curl -v "http://default-broker.event-example.svc.cluster.local" \
269+
curl -v "http://broker-ingress.knative-eventing.svc.cluster.local/event-example/default" \
270270
-X POST \
271271
-H "Ce-Id: say-hello" \
272272
-H "Ce-Specversion: 1.0" \
@@ -289,7 +289,7 @@ EOF
289289
`sendoff`, run the following in the SSH terminal:
290290
291291
```
292-
curl -v "http://default-broker.event-example.svc.cluster.local" \
292+
curl -v "http://broker-ingress.knative-eventing.svc.cluster.local/event-example/default" \
293293
-X POST \
294294
-H "Ce-Id: say-goodbye" \
295295
-H "Ce-Specversion: 1.0" \
@@ -310,7 +310,7 @@ EOF
310310
- To make the third request, which creates an event that has the `type`
311311
`greeting` and the`source` `sendoff`, run the following in the SSH terminal:
312312
```
313-
curl -v "http://default-broker.event-example.svc.cluster.local" \
313+
curl -v "http://broker-ingress.knative-eventing.svc.cluster.local/event-example/default" \
314314
-X POST \
315315
-H "Ce-Id: say-hello-goodbye" \
316316
-H "Ce-Specversion: 1.0" \

0 commit comments

Comments
 (0)