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
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This repo depends on [knative/serving](https://github.com/knative/serving) and
together with [knative/build](https://github.com/knative/build) provides a
complete serverless platform.

The primary goal of *eventing* is interoperabilty; therefore, we expect to
The primary goal of *eventing* is interoperability; therefore, we expect to
provide common libraries that can be used in other systems to emit or consume
events.

Expand All @@ -42,3 +42,21 @@ attaching an event (or filtered event stream via a "trigger) to an action.
* [Setup Binding](./DEVELOPMENT.md)
* [Run samples](./sample/README.md)


# Kubernetes Extensions

Eventing extends Kubernetes with Custom Resource Definitions (CRDs). The
following Custom Resources (CRs) are used in the production and consumption of
events:

#### Channels

- Bus
- Channel
- Subscription

#### Feeds

- Bind
- EventSource
- EventType
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These would be infinitely more useful if they linked to more extensive docs about each. I'm guessing those don't exist, but maybe linking to their type definitions would be a reasonable stand-in?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Agreed, and will link to this: #147 when I land it.