Files
charts/bitnami/milvus/templates/query-coordinator/extra-configmap.yaml
Carlos Rodríguez Hernández ba40e46ec6 [bitnami/milvus] Bump kafka major version and update license header (#17538)
Signed-off-by: Carlos Rodríguez Hernández <carlosrh@vmware.com>
2023-07-10 09:27:23 +02:00

25 lines
1007 B
YAML

{{- /*
Copyright VMware, Inc.
SPDX-License-Identifier: APACHE-2.0
*/}}
{{- if and .Values.queryCoord.extraConfig (not .Values.queryCoord.extraConfigExistingConfigMap) }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ printf "%s-extra" (include "milvus.query-coordinator.fullname" .) }}
namespace: {{ include "common.names.namespace" . | quote }}
labels: {{- include "common.labels.standard" . | nindent 4 }}
app.kubernetes.io/part-of: milvus
app.kubernetes.io/component: query-coordinator
{{- 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 }}
data:
04_query_coordinator_extra.yaml: |
{{- include "common.tplvalues.render" (dict "value" .Values.queryCoord.extraConfig "context" $) | nindent 4 }}
{{- end }}