This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch kafka-source-auth in repository https://gitbox.apache.org/repos/asf/camel-kamelets.git
commit f83d6696ba3fe0e0bbe16d9a3d8c147646d61450 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Mon May 3 16:35:52 2021 +0200 Moved the kafka-source Kamelet to authenticated version --- docs/modules/ROOT/pages/kafka-source.adoc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/modules/ROOT/pages/kafka-source.adoc b/docs/modules/ROOT/pages/kafka-source.adoc index e8e2295..6e937be 100644 --- a/docs/modules/ROOT/pages/kafka-source.adoc +++ b/docs/modules/ROOT/pages/kafka-source.adoc @@ -12,7 +12,11 @@ The following table summarizes the configuration options available for the `kafk |=== | Property| Name| Description| Type| Default| Example | *brokers {empty}* *| Brokers| Comma separated list of Kafka Broker URLs| string| | +| *password {empty}* *| Password| Password to authenticate to kafka| string| | +| *saslMechanism {empty}* *| SASL Mechanism| The Simple Authentication and Security Layer (SASL) Mechanism used.| string| `"PLAIN"`| +| *securityProtocol {empty}* *| Security Protocol| Protocol used to communicate with brokers. SASL_PLAINTEXT, PLAINTEXT, SASL_SSL and SSL are supported| string| `"SASL_SSL"`| | *topic {empty}* *| Topic Names| Comma separated list of Kafka topic names| string| | +| *username {empty}* *| Username| Username to authenticate to Kafka| string| | |=== NOTE: Fields marked with ({empty}*) are mandatory. @@ -40,7 +44,9 @@ spec: name: kafka-source properties: brokers: "The Brokers" + password: "The Password" topic: "The Topic Names" + username: "The Username" sink: ref: kind: InMemoryChannel