link to each channel documentation instead of the code (#2249)

This commit is contained in:
Lionel Villard 2020-03-18 17:45:05 -04:00 committed by GitHub
parent ec013cebf5
commit d69a6fb179
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

View File

@ -27,8 +27,8 @@ Notes:
Name | Status | Support | Description
--- | --- | --- | ---
[GCP PubSub](https://github.com/google/knative-gcp) | Proof of Concept | None | Channels are backed by [GCP PubSub](https://cloud.google.com/pubsub/).
[InMemoryChannel](https://github.com/knative/eventing/tree/{{< branch >}}/config/channels/in-memory-channel) | Proof of Concept | None | In-memory channels are a best effort Channel. They should NOT be used in Production. They are useful for development.
[KafkaChannel](https://github.com/knative/eventing-contrib/tree/{{< branch >}}/kafka/channel/config) | Proof of Concept | None | Channels are backed by [Apache Kafka](http://kafka.apache.org/) topics.
[NatssChannel](https://github.com/knative/eventing-contrib/tree/{{< branch >}}/natss/config) | Proof of Concept | None | Channels are backed by [NATS Streaming](https://github.com/nats-io/nats-streaming-server#configuring).
[InMemoryChannel](https://github.com/knative/eventing/tree/{{< branch >}}/config/channels/in-memory-channel/README.md) | Proof of Concept | None | In-memory channels are a best effort Channel. They should NOT be used in Production. They are useful for development.
[KafkaChannel](https://github.com/knative/eventing-contrib/tree/{{< branch >}}/kafka/channel/README.md) | Proof of Concept | None | Channels are backed by [Apache Kafka](http://kafka.apache.org/) topics.
[NatssChannel](https://github.com/knative/eventing-contrib/tree/{{< branch >}}/natss/config/README.md) | Proof of Concept | None | Channels are backed by [NATS Streaming](https://github.com/nats-io/nats-streaming-server#configuring).

View File

@ -1,19 +1,19 @@
# List of available Channel implementation for persistence of the events associated with a given channel
# List of available Channel implementation for persistence of the events associated with a given channel
channels:
- name: InMemoryChannel
url: https://github.com/knative/eventing/tree/{{< branch >}}/config/channels/in-memory-channel
url: https://github.com/knative/eventing/tree/{{< branch >}}/config/channels/in-memory-channel/README.md
status: Proof of Concept
support: None
description: >
In-memory channels are a best effort Channel. They should NOT be used in Production. They are useful for development.
- name: KafkaChannel
url: https://github.com/knative/eventing-contrib/tree/{{< branch >}}/kafka/channel/config
url: https://github.com/knative/eventing-contrib/tree/{{< branch >}}/kafka/channel/README.md
status: Proof of Concept
support: None
description: >
Channels are backed by [Apache Kafka](http://kafka.apache.org/) topics.
- name: NatssChannel
url: https://github.com/knative/eventing-contrib/tree/{{< branch >}}/natss/config
url: https://github.com/knative/eventing-contrib/tree/{{< branch >}}/natss/config/README.md
status: Proof of Concept
support: None
description: >