Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit 4c5eda1

Browse files
jmcxSameer Naik
authored and
Sameer Naik
committed
KafkaSource topics becomes KafkaSource topic
We've improved the consistency of the source by aligning the spelling of the topics parameter to singular. This was done as part of the December 6th release but this part of the documentation wasn't updated.
1 parent 7dce1ec commit 4c5eda1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/sources/kafka.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Consumes events from [Apache Kafka](https://kafka.apache.org/). Can be used with
66
With `tmctl`:
77

88
```
9-
tmctl create source kafka --bootstrapServers kafka.example.com:9092 --topics <topic> --groupID <groupID> --auth.username <user> --auth.password.value <pass> --auth.saslEnable true --auth.tlsEnable true --auth.securityMechanism PLAIN
9+
tmctl create source kafka --bootstrapServers kafka.example.com:9092 --topic <topic> --groupID <groupID> --auth.username <user> --auth.password.value <pass> --auth.saslEnable true --auth.tlsEnable true --auth.securityMechanism PLAIN
1010
```
1111

1212
On Kubernetes:
@@ -20,7 +20,7 @@ spec:
2020
groupID: test-consumer-group
2121
bootstrapServers:
2222
- kafka.example.com:9092
23-
topics:
23+
topic:
2424
- test-topic
2525
auth:
2626
saslEnable: true
@@ -69,7 +69,7 @@ spec:
6969
groupID: test-consumer-group
7070
bootstrapServers:
7171
- kafka.example.com:9092
72-
topics:
72+
topic:
7373
- test-topic
7474
auth:
7575
saslEnable: true
@@ -110,7 +110,7 @@ spec:
110110
groupID: test-consumer-group
111111
bootstrapServers:
112112
- kafka.example.com:9093
113-
topics:
113+
topic:
114114
- test-topic
115115
auth:
116116
saslEnable: true
@@ -144,7 +144,7 @@ spec:
144144
In order to configure the adapter correctly the following fields are mandatory:
145145

146146
- `boostrapservers`
147-
- `topics`
147+
- `topic`
148148
- `salsEnable`
149149

150150
### Status

0 commit comments

Comments
 (0)