Files
charts/bitnami/milvus/templates/proxy/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
961 B
YAML

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