Skip to content
Closed
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
18 changes: 9 additions & 9 deletions docs/eventing/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ The [broker](./broker/README.md#broker) allows you to route events to different
This shows information about your broker. If the broker is working correctly, it shows a `READY` status of `True`:

```
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 31m
```

If `READY` is `False`, wait a few moments and then run the command again.
Expand Down Expand Up @@ -266,7 +266,7 @@ EOF
- To make the first request, which creates an event that has the `type`
`greeting`, run the following in the SSH terminal:
```
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: 1.0" \
Expand All @@ -289,7 +289,7 @@ EOF
`sendoff`, run the following in the SSH terminal:

```
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: 1.0" \
Expand All @@ -310,7 +310,7 @@ EOF
- 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:
```
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: 1.0" \
Expand Down Expand Up @@ -358,7 +358,7 @@ After you send the events, verify that the events were received by the correct s
time: 2019-05-20T17:59:43.81718488Z
contenttype: application/json
Extensions,
knativehistory: default-broker-srk54-channel-24gls.event-example.svc.cluster.local
knativehistory: default-kne-trigger-kn-channel.event-example.svc.cluster.local
Data,
{
"msg": "Hello Knative!"
Expand All @@ -373,7 +373,7 @@ After you send the events, verify that the events were received by the correct s
time: 2019-05-20T17:59:54.211866425Z
contenttype: application/json
Extensions,
knativehistory: default-broker-srk54-channel-24gls.event-example.svc.cluster.local
knativehistory: default-kne-trigger-kn-channel.event-example.svc.cluster.local
Data,
{
"msg": "Hello Knative! Goodbye Knative!"
Expand All @@ -397,7 +397,7 @@ After you send the events, verify that the events were received by the correct s
time: 2019-05-20T17:59:49.044926148Z
contenttype: application/json
Extensions,
knativehistory: default-broker-srk54-channel-24gls.event-example.svc.cluster.local
knativehistory: default-kne-trigger-kn-channel.event-example.svc.cluster.local
Data,
{
"msg": "Goodbye Knative!"
Expand All @@ -412,7 +412,7 @@ After you send the events, verify that the events were received by the correct s
time: 2019-05-20T17:59:54.211866425Z
contenttype: application/json
Extensions,
knativehistory: default-broker-srk54-channel-24gls.event-example.svc.cluster.local
knativehistory: default-kne-trigger-kn-channel.event-example.svc.cluster.local
Data,
{
"msg": "Hello Knative! Goodbye Knative!"
Expand Down