Skip to content
This repository was archived by the owner on Aug 16, 2023. It is now read-only.

Commit d827848

Browse files
authored
Add tenant namespace and auth parameters for external pulsar (#396)
Signed-off-by: Edward Zeng <jie.zeng@zilliz.com> Signed-off-by: Edward Zeng <jie.zeng@zilliz.com>
1 parent 8a1c4da commit d827848

File tree

4 files changed

+13
-1
lines changed

4 files changed

+13
-1
lines changed

charts/milvus/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: milvus
33
appVersion: "2.2.0"
44
kubeVersion: "^1.10.0-0"
55
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
77
keywords:
88
- milvus
99
- elastic

charts/milvus/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,10 @@ The following table lists the configurable parameters of the Milvus Service and
187187
| `externalPulsar.enabled` | Enable or disable external Pulsar | `false` |
188188
| `externalPulsar.host` | The host of the external Pulsar | `localhost` |
189189
| `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 | `""` |
190194
| `externalKafka.enabled` | Enable or disable external Kafka | `false` |
191195
| `externalKafka.brokerList` | The brokerList of the external Kafka separated by comma | `localhost:9092` |
192196
| `externalKafka.securityProtocol` | The securityProtocol used for kafka authentication | `SASL_SSL` |

charts/milvus/templates/config.tpl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,10 @@ pulsar:
108108
address: {{ .Values.externalPulsar.host }}
109109
port: {{ .Values.externalPulsar.port }}
110110
maxMessageSize: {{ .Values.externalPulsar.maxMessageSize }}
111+
tenant: {{ .Values.externalPulsar.tenant }}
112+
namespace: {{ .Values.externalPulsar.namespace }}
113+
authPlugin: {{ .Values.externalPulsar.authPlugin }}
114+
authParams: {{ .Values.externalPulsar.authParams }}
111115

112116
{{- else if .Values.pulsar.enabled }}
113117

charts/milvus/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1050,6 +1050,10 @@ externalPulsar:
10501050
host: localhost
10511051
port: 6650
10521052
maxMessageSize: 5242880 # 5 * 1024 * 1024 Bytes, Maximum size of each message in pulsar.
1053+
tenant: public
1054+
namespace: default
1055+
authPlugin: ""
1056+
authParams: ""
10531057

10541058
###################################
10551059
# External kafka

0 commit comments

Comments
 (0)