mirror of
https://github.com/bitnami/charts.git
synced 2026-02-10 03:17:20 +08:00
23 lines
903 B
YAML
23 lines
903 B
YAML
{{- /*
|
|
Copyright Broadcom, Inc. All Rights Reserved.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
{{- if and .Values.aggregator.enabled (not .Values.aggregator.configMap) -}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ printf "%s-aggregator-cm" (include "common.names.fullname" .) | trunc 63 | trimSuffix "-" }}
|
|
namespace: {{ .Release.Namespace | quote }}
|
|
labels: {{- include "common.labels.standard" ( dict "customLabels" .Values.commonLabels "context" $ ) | nindent 4 }}
|
|
app.kubernetes.io/component: aggregator
|
|
{{- if .Values.commonAnnotations }}
|
|
annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
|
|
{{- end }}
|
|
data:
|
|
{{- range $key, $value := .Values.aggregator.configMapFiles }}
|
|
{{ $key }}: |
|
|
{{- include "common.tplvalues.render" (dict "value" $value "context" $) | nindent 4 }}
|
|
{{- end }}
|
|
{{- end -}}
|