Files
charts/bitnami/milvus/templates/secret.yaml
Javier J. Salmerón-García ed350626bc [bitnami/milvus] feat: 🎉 Add chart (#17425)
* [bitnami/milvus] feat: 🎉 Add chart

Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>

* chore: 🔧 Add to cd-pipeline

Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>

* docs: 📝 Update documentation

Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>

* test:  Change health check endpoint

Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>

* test:  Update Attu endpoint

Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>

---------

Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>
2023-07-07 17:16:55 +02:00

25 lines
1.1 KiB
YAML

{{- /*
Copyright VMware, Inc.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{- if and .Values.milvus.auth.enabled (not .Values.milvus.auth.existingSecret) }}
apiVersion: v1
kind: Secret
metadata:
name: {{ template "common.names.fullname" . }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" . | nindent 4 }}
app.kubernetes.io/part-of: milvus
{{- if .Values.commonLabels }}
{{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
{{- end }}
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
type: Opaque
data:
password: {{ include "common.secrets.passwords.manage" (dict "secret" (include "common.names.fullname" .) "key" "password" "providedValues" (list "milvus.auth.password") "context" $) }}
root-password: {{ include "common.secrets.passwords.manage" (dict "secret" (include "common.names.fullname" .) "key" "password" "providedValues" (list "milvus.auth.rootPassword") "context" $) }}
{{- end }}