This repository was archived by the owner on Aug 16, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Expand file tree Collapse file tree 4 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: milvus
3
3
appVersion : " 2.2.0"
4
4
kubeVersion : " ^1.10.0-0"
5
5
description : Milvus is an open-source vector database built to power AI applications and vector similarity search.
6
- version : 3.3.2
6
+ version : 3.3.3
7
7
keywords :
8
8
- milvus
9
9
- elastic
Original file line number Diff line number Diff line change @@ -187,6 +187,10 @@ The following table lists the configurable parameters of the Milvus Service and
187
187
| ` externalPulsar.enabled ` | Enable or disable external Pulsar | ` false ` |
188
188
| ` externalPulsar.host ` | The host of the external Pulsar | ` localhost ` |
189
189
| ` externalPulsar.port ` | The port of the external Pulsar | ` 6650 ` |
190
+ | ` externalPulsar.tenant ` | The tenant of the external Pulsar | ` public ` |
191
+ | ` externalPulsar.namespace ` | The namespace of the external Pulsar | ` default ` |
192
+ | ` externalPulsar.authPlugin ` | The authPlugin of the external Pulsar | ` "" ` |
193
+ | ` externalPulsar.authParams ` | The authParams of the external Pulsar | ` "" ` |
190
194
| ` externalKafka.enabled ` | Enable or disable external Kafka | ` false ` |
191
195
| ` externalKafka.brokerList ` | The brokerList of the external Kafka separated by comma | ` localhost:9092 ` |
192
196
| ` externalKafka.securityProtocol ` | The securityProtocol used for kafka authentication | ` SASL_SSL ` |
Original file line number Diff line number Diff line change @@ -108,6 +108,10 @@ pulsar:
108
108
address: { { .Values.externalPulsar.host } }
109
109
port: { { .Values.externalPulsar.port } }
110
110
maxMessageSize: { { .Values.externalPulsar.maxMessageSize } }
111
+ tenant: { { .Values.externalPulsar.tenant } }
112
+ namespace: { { .Values.externalPulsar.namespace } }
113
+ authPlugin: { { .Values.externalPulsar.authPlugin } }
114
+ authParams: { { .Values.externalPulsar.authParams } }
111
115
112
116
{ {- else if .Values.pulsar.enabled } }
113
117
Original file line number Diff line number Diff line change @@ -1050,6 +1050,10 @@ externalPulsar:
1050
1050
host : localhost
1051
1051
port : 6650
1052
1052
maxMessageSize : 5242880 # 5 * 1024 * 1024 Bytes, Maximum size of each message in pulsar.
1053
+ tenant : public
1054
+ namespace : default
1055
+ authPlugin : " "
1056
+ authParams : " "
1053
1057
1054
1058
# ##################################
1055
1059
# External kafka
You can’t perform that action at this time.
0 commit comments