12 lines
385 B
YAML
12 lines
385 B
YAML
{{- if .Values.kubecostProductConfigs -}}
|
|
{{- if .Values.kubecostProductConfigs.metricsConfigs -}}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ default "metrics-config" .Values.metricsConfigmapName }}
|
|
labels:
|
|
{{ include "cost-analyzer.commonLabels" . | nindent 4 }}
|
|
data:
|
|
metrics.json: '{{ toJson .Values.kubecostProductConfigs.metricsConfigs }}'
|
|
{{- end -}}
|
|
{{- end -}} |