mirror of https://github.com/knative/docs.git
Update KafkaSource example with updated bootstrapServer, Topics format (#2410)
in knative/eventing-contrib#1156 we've updated the format for the topics and bootstrapServer to be lists, update example accordingly
This commit is contained in:
parent
2ffa285b7a
commit
478839f4b4
|
@ -35,8 +35,10 @@ metadata:
|
||||||
name: kafka-source
|
name: kafka-source
|
||||||
spec:
|
spec:
|
||||||
consumerGroup: KAFKA_CONSUMER_GROUP_NAME
|
consumerGroup: KAFKA_CONSUMER_GROUP_NAME
|
||||||
bootstrapServers: KAFKA_BOOTSTRAP_SERVERS
|
bootstrapServers:
|
||||||
topics: KAFKA_TOPICS
|
- KAFKA_BOOTSTRAP_SERVERS
|
||||||
|
topics:
|
||||||
|
- KAFKA_TOPICS
|
||||||
net:
|
net:
|
||||||
sasl:
|
sasl:
|
||||||
enable: KAFKA_SASL_ENABLE
|
enable: KAFKA_SASL_ENABLE
|
||||||
|
|
Loading…
Reference in New Issue