From 5d1305dbdf02e1fc64f033db17e9efe0da463f93 Mon Sep 17 00:00:00 2001 From: Evan Anderson Date: Tue, 26 May 2020 11:04:50 -0700 Subject: [PATCH] Fix broker links flagged by link-checker (#2501) --- docs/eventing/getting-started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/eventing/getting-started.md b/docs/eventing/getting-started.md index bb8cdc24b..1eba22f9f 100644 --- a/docs/eventing/getting-started.md +++ b/docs/eventing/getting-started.md @@ -114,7 +114,7 @@ In the next section, you will need to verify that the resources you added in thi ### Validating that the `Broker` is running -The [`Broker`](./broker-trigger.md#broker) ensures that every event sent by event producers arrives at the correct event consumers. The `Broker` was created when you labeled your namespace as ready for eventing, but it is important to verify that your `Broker` is working correctly. In this guide, you will use the default broker. +The [`Broker`](./broker/README.md#broker) ensures that every event sent by event producers arrives at the correct event consumers. The `Broker` was created when you labeled your namespace as ready for eventing, but it is important to verify that your `Broker` is working correctly. In this guide, you will use the default broker. 1. Run the following command to verify that the `Broker` is in a healthy state: @@ -237,7 +237,7 @@ Your event consumers receive the events sent by event producers. In this step, y ### Creating `Triggers` -A [Trigger](./broker-trigger.md#trigger) defines the events that you want each of your event consumers +A [Trigger](./broker/README.md#trigger) defines the events that you want each of your event consumers to receive. Your `Broker` uses triggers to forward events to the right consumers. Each trigger can specify a filter to select relevant events based on the Cloud Event context attributes. @@ -533,5 +533,5 @@ This removes the namespace and all of its resources from your cluster. You've learned the basics of the Knative Eventing workflow. Here are some additional resources to help you continue to build with the Knative Eventing component. -- [Broker and Trigger](./broker-trigger.md) +- [Broker and Trigger](./broker/README.md) - [Eventing with a GitHub source](./samples/github-source/README.md)