From 089473ffc8070f94479873e4f150b98e16a4d659 Mon Sep 17 00:00:00 2001 From: Ashleigh Brennan <40172997+abrennan89@users.noreply.github.com> Date: Wed, 4 Nov 2020 10:29:04 -0600 Subject: [PATCH] Fix broken links from sandbox moved files (#2965) * Fix broken links from sandbox moved files * updated command * Review updates, comments --- docs/eventing/channels/channels-crds.md | 3 ++- docs/eventing/channels/channels.yaml | 3 +-- docs/install/any-kubernetes-cluster.md | 19 ++++++------------- 3 files changed, 9 insertions(+), 16 deletions(-) diff --git a/docs/eventing/channels/channels-crds.md b/docs/eventing/channels/channels-crds.md index c3ff84d8b..3e442079f 100644 --- a/docs/eventing/channels/channels-crds.md +++ b/docs/eventing/channels/channels-crds.md @@ -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). diff --git a/docs/eventing/channels/channels.yaml b/docs/eventing/channels/channels.yaml index aad65553f..a65814905 100644 --- a/docs/eventing/channels/channels.yaml +++ b/docs/eventing/channels/channels.yaml @@ -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. - diff --git a/docs/install/any-kubernetes-cluster.md b/docs/install/any-kubernetes-cluster.md index 6d8a070f5..518b983a1 100644 --- a/docs/install/any-kubernetes-cluster.md +++ b/docs/install/any-kubernetes-cluster.md @@ -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. + ## 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 >}}