From 15218b4054c30604739aa9d4586d7a962a6c4524 Mon Sep 17 00:00:00 2001 From: Wang Yanfeng Date: Fri, 12 Jan 2024 10:26:42 +0800 Subject: [PATCH] [Milvus] : add more comments to externalKafka parameter (#48) Signed-off-by: Wang Yanfeng --- charts/milvus/values.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/charts/milvus/values.yaml b/charts/milvus/values.yaml index ddfa706..0744757 100644 --- a/charts/milvus/values.yaml +++ b/charts/milvus/values.yaml @@ -901,6 +901,18 @@ externalPulsar: ################################### # External kafka # - these configs are only used when `externalKafka.enabled` is true +# - note that the following are just examples, you should confirm the +# value of brokerList and mechanisms according to the actual external +# Kafka configuration. E.g. If you select the AWS MSK, the configuration +# should look something like this: +# externalKafka: +# enabled: true +# brokerList: "xxxx:9096" +# securityProtocol: SASL_SSL +# sasl: +# mechanisms: SCRAM-SHA-512 +# password: "xxx" +# username: "xxx" ################################### externalKafka: enabled: false