Files
charts/bitnami/fluentd/templates/aggregator-configmap.yaml
Miguel Ruiz 0051524e56 [bitnami/fluentd] Add missing namespace metadata (#10123)
* [bitnami/fluentd] Add missing namespace metadata

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>

* ServiceMonitor namespace

Signed-off-by: Miguel Ruiz <miruiz@vmware.com>
2022-05-12 10:15:43 +02:00

21 lines
868 B
YAML

{{- if and .Values.aggregator.enabled (not .Values.aggregator.configMap) -}}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "common.names.fullname" . }}-aggregator-cm
namespace: {{ .Release.Namespace | quote }}
labels: {{- include "common.labels.standard" . | nindent 4 }}
app.kubernetes.io/component: aggregator
{{- 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:
{{- range $key, $value := .Values.aggregator.configMapFiles }}
{{ $key }}: |
{{- include "common.tplvalues.render" (dict "value" $value "context" $) | nindent 4 }}
{{- end }}
{{- end -}}