Files
charts/bitnami/milvus/templates/extra-configmap.yaml
2023-08-25 06:31:49 +00:00

21 lines
821 B
YAML

{{- /*
Copyright VMware, Inc.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{- if and .Values.milvus.extraConfig (not .Values.milvus.extraConfigExistingConfigMap) }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ printf "%s-extra" (include "common.names.fullname" .) }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
app.kubernetes.io/part-of: milvus
{{- if .Values.commonAnnotations }}
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
data:
00_milvus_default.yaml: |
{{- include "common.tplvalues.render" (dict "value" .Values.milvus.extraConfig "context" $) | nindent 4 }}
{{- end }}