eventing/README: add KafkaSource net attribute (#1296)

This commit is contained in:
Dan Peterson 2019-05-09 14:08:38 -03:00 committed by Knative Prow Robot
parent 1f3d6991e5
commit 5d4de70b3c
1 changed files with 11 additions and 0 deletions

View File

@ -265,6 +265,17 @@ Knative Serving application so that they can be consumed.
- `bootstrapServers`: `string` Comma separated list of `hostname:port` pairs for
the Kafka Broker.
- `topics`: `string` Name of the Kafka topic to consume messages from.
- `net`: Optional network configuration.
- `sasl`: Optional SASL authentication configuration.
- `enable`: `boolean` If true, use SASL for authentication.
- `user.secretKeyRef`:
[SecretKeySelector](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.12/#secretkeyselector-v1-core)
containing the SASL username to use.
- `password.secretKeyRef`:
[SecretKeySelector](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.12/#secretkeyselector-v1-core)
containing the SASL password to use.
- `tls`: Optional TLS configuration.
- `enable`: `boolean` If true, use TLS when connecting.
See the
[Kafka Source](https://github.com/knative/eventing-sources/tree/master/contrib/kafka/samples)