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
18 changes: 16 additions & 2 deletions contrib/kafka/config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,25 @@ Deployment steps:
1. Now that Apache Kafka is installed, you need to configure the
`bootstrap_servers` value in the `kafka-channel-controller-config` ConfigMap,
located inside the `contrib/kafka/config/kafka.yaml` file:
`... apiVersion: v1 kind: ConfigMap metadata: name: kafka-channel-controller-config namespace: knative-eventing data: # Broker URL's for the provisioner bootstrap_servers: kafkabroker.kafka:9092 ...` >
Note: The `bootstrap_servers` needs to contain the address of at least one

```yaml
...
apiVersion: v1
kind: ConfigMap
metadata:
name: kafka-channel-controller-config
namespace: knative-eventing
data:
# Broker URL's for the provisioner
bootstrap_servers: kafkabroker.kafka:9092
...
```

>Note: The `bootstrap_servers` needs to contain the address of at least one
broker of your Apache Kafka cluster. If you are using Strimzi, you need to
update the `bootstrap_servers` value to
`my-cluster-kafka-bootstrap.mynamespace:9092`.

1. Apply the 'Kafka' ClusterChannelProvisioner, Controller, and Dispatcher:

```
Expand Down