Fix broken links from sandbox moved files (#2965)

* Fix broken links from sandbox moved files

* updated command

* Review updates, comments
This commit is contained in:
Ashleigh Brennan 2020-11-04 10:29:04 -06:00 committed by GitHub
parent 178c3a4f9c
commit 089473ffc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 16 deletions

View File

@ -28,7 +28,8 @@ 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/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.
[KafkaChannel](https://github.com/knative-sandbox/eventing-kafka/tree/{{< branch >}}/pkg/channel/consolidated/README.md) | Proof of Concept | None | Channels are backed by [Apache Kafka](http://kafka.apache.org/) topics.
[Knative sandbox channel that uses Confluent Go Client, and the librdkafka C library](https://github.com/knative-sandbox/eventing-kafka) | Proof of Concept | None | Kafka Channel implementation, contributed by SAP's Kyma project, is a Knative Eventing implementation of a Kafka backed channel which provides advanced functionality and production grade qualities as an alternative to what the eventing-contrib/kafka implementation offers.
[NatssChannel](https://github.com/knative-sandbox/eventing-natss/tree/{{< branch >}}/config/README.md) | Proof of Concept | None | Channels are backed by [NATS Streaming](https://github.com/nats-io/nats-streaming-server#configuring).

View File

@ -7,7 +7,7 @@ channels:
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/README.md
url: https://github.com/knative-sandbox/eventing-kafka/tree/{{< branch >}}/pkg/channel/consolidated/README.md
status: Proof of Concept
support: None
description: >
@ -30,4 +30,3 @@ channels:
support: None
description: >
Kafka Channel implementation, contributed by SAP's Kyma project, is a Knative Eventing implementation of a Kafka backed channel which provides advanced functionality and production grade qualities as an alternative to what the eventing-contrib/kafka implementation offers.

View File

@ -35,11 +35,7 @@ a brief description of each:
abstractions to enable binding event sources (e.g. Github Webhooks, Kafka) and
consumers (e.g. Kubernetes or Knative Services).
Knative also has an
[**Observability plugin**](#installing-the-observability-plugin)
{{< feature-state version="v0.14" state="deprecated" short=true >}} which
provides standard tooling that can be used to get visibility into the health of
the software running on Knative.
<!-- TODO: Mention CLI here too and point to CLI docs?-->
## Before you begin
@ -546,7 +542,7 @@ The following commands install the Knative Eventing component.
1. Then install the Apache Kafka Channel:
```bash
curl -L "{{< artifact repo="eventing-contrib" file="kafka-channel.yaml" >}}" \
curl -L "{{< artifact org="knative-sandbox" artifact repo="eventing-kafka" file="channel-consolidated.yaml" >}}" \
| sed 's/REPLACE_WITH_CLUSTER_URL/my-cluster-kafka-bootstrap.kafka:9092/' \
| kubectl apply --filename -
```
@ -587,13 +583,12 @@ kubectl apply --filename {{< artifact repo="eventing" file="in-memory-channel.ya
{{% tab name="NATS Channel" %}}
1. First, [Install NATS Streaming for
Kubernetes](https://github.com/knative/eventing-contrib/blob/{{<
version >}}/natss/config/broker/README.md)
Kubernetes](https://github.com/knative-sandbox/eventing-natss/tree/master/config)
1. Then install the NATS Streaming Channel:
```bash
kubectl apply --filename {{< artifact repo="eventing-contrib" file="natss-channel.yaml" >}}
kubectl apply --filename {{< artifact org="knative-sandbox" repo="eventing-natss" file="300-natss-channel.yaml" >}}
```
{{< /tab >}}
@ -795,7 +790,7 @@ To learn more about the Apache Camel-K source, try
The following command installs the Apache Kafka Source:
```bash
kubectl apply --filename {{< artifact repo="eventing-contrib" file="kafka-source.yaml" >}}
kubectl apply --filename {{< artifact org="knative-sandbox" artifact repo="eventing-kafka" file="source.yaml" >}}
```
To learn more about the Apache Kafka source, try
@ -838,9 +833,7 @@ The following command installs the Apache CouchDB Source:
kubectl apply --filename {{< artifact org="knative-sandbox" repo="eventing-couchdb" file="couchdb.yaml" >}}
```
To learn more about the Apache CouchDB source, read [our
documentation]((https://github.com/knative/eventing-contrib/blob/{{<
version >}}/couchdb/README.md)
To learn more about the Apache CouchDB source, read the [documentation](https://github.com/knative-sandbox/eventing-couchdb/blob/master/source/README.md).
{{< /tab >}}