Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/eventing/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,8 +125,8 @@ The [`Broker`](./broker/README.md#broker) ensures that every event sent by event
This shows the `Broker` that you created:

```sh
NAME READY REASON URL AGE
default True http://default-broker.event-example.svc.cluster.local 1m
NAME READY REASON URL AGE
default True http://broker-ingress.knative-eventing.svc.cluster.local/event-example/default 1m
```

When the `Broker` has the `READY=True` state, it can begin to manage any events it receives.
Expand Down Expand Up @@ -357,7 +357,7 @@ To show the various types of events you can send, you will make three requests:
1. To make the first request, which creates an event that has the `type` `greeting`, run the following in the SSH terminal:

```sh
curl -v "http://default-broker.event-example.svc.cluster.local" \
curl -v "http://broker-ingress.knative-eventing.svc.cluster.local/event-example/default" \
-X POST \
-H "Ce-Id: say-hello" \
-H "Ce-Specversion: 0.3" \
Expand All @@ -381,7 +381,7 @@ To show the various types of events you can send, you will make three requests:
1. To make the second request, which creates an event that has the `source` `sendoff`, run the following in the SSH terminal:

```sh
curl -v "http://default-broker.event-example.svc.cluster.local" \
curl -v "http://broker-ingress.knative-eventing.svc.cluster.local/event-example/default" \
-X POST \
-H "Ce-Id: say-goodbye" \
-H "Ce-Specversion: 0.3" \
Expand All @@ -404,7 +404,7 @@ To show the various types of events you can send, you will make three requests:
1. To make the third request, which creates an event that has the `type` `greeting` and the`source` `sendoff`, run the following in the SSH terminal:

```sh
curl -v "http://default-broker.event-example.svc.cluster.local" \
curl -v "http://broker-ingress.knative-eventing.svc.cluster.local/event-example/default" \
-X POST \
-H "Ce-Id: say-hello-goodbye" \
-H "Ce-Specversion: 0.3" \
Expand Down