This repository was archived by the owner on Aug 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: milvus
33appVersion : " 2.0.2"
44kubeVersion : " ^1.10.0-0"
55description : Milvus is an open-source vector database built to power AI applications and vector similarity search.
6- version : 3.0.24
6+ version : 3.0.25
77keywords :
88 - milvus
99 - elastic
Original file line number Diff line number Diff line change @@ -150,6 +150,10 @@ The following table lists the configurable parameters of the Milvus Service and
150150| ` externalPulsar.port ` | The port of the external Pulsar | ` 6650 ` |
151151| ` externalKafka.enabled ` | Enable or disable external Kafka | ` false ` |
152152| ` externalKafka.brokerList ` | The brokerList of the external Kafka separated by comma | ` localhost:9092 ` |
153+ | ` externalKafka.securityProtocol ` | The securityProtocol used for kafka authentication | ` SASL_SSL ` |
154+ | ` externalKafka.sasl.mechanisms ` | SASL mechanism to use for kafka authentication | ` PLAIN ` |
155+ | ` externalKafka.sasl.username ` | username for PLAIN or SASL/PLAIN authentication | `` |
156+ | ` externalKafka.sasl.password ` | password for PLAIN or SASL/PLAIN authentication | `` |
153157=======
154158| Parameter | Description | Default |
155159| ----------------------------------------------------- | ------------------------------------------------------------ | ------------------------------------------------------------ |
Original file line number Diff line number Diff line change @@ -75,6 +75,14 @@ pulsar:
7575
7676kafka:
7777 brokerList: {{ .Values.externalKafka.brokerList }}
78+ securityProtocol: {{ .Values.externalKafka.securityProtocol }}
79+ saslMechanisms: {{ .Values.externalKafka.sasl.mechanisms }}
80+ {{- if .Values.externalKafka.sasl.username }}
81+ saslUsername: {{ .Values.externalKafka.sasl.username }}
82+ {{- end }}
83+ {{- if .Values.externalKafka.sasl.password }}
84+ saslPassword: {{ .Values.externalKafka.sasl.password }}
85+ {{- end }}
7886{{- else if .Values.kafka.enabled }}
7987
8088kafka:
Original file line number Diff line number Diff line change @@ -739,3 +739,8 @@ externalPulsar:
739739externalKafka :
740740 enabled : false
741741 brokerList : localhost:9092
742+ securityProtocol : SASL_SSL
743+ sasl :
744+ mechanisms : PLAIN
745+ username : " "
746+ password : " "
You can’t perform that action at this time.
0 commit comments