2022-01-10 19:55:02 +00:00
|
|
|
{{- if .Values.kubecostProductConfigs }}
|
|
|
|
{{- if .Values.kubecostProductConfigs.productKey }}
|
|
|
|
{{- if .Values.kubecostProductConfigs.productKey.enabled }}
|
|
|
|
apiVersion: v1
|
|
|
|
kind: ConfigMap
|
|
|
|
metadata:
|
|
|
|
name: {{ default "product-configs" .Values.productConfigmapName }}
|
2023-02-07 20:34:08 +00:00
|
|
|
namespace: {{ .Release.Namespace }}
|
2022-01-10 19:55:02 +00:00
|
|
|
labels:
|
|
|
|
{{ include "cost-analyzer.commonLabels" . | nindent 4 }}
|
|
|
|
data:
|
|
|
|
{{- if .Values.kubecostProductConfigs.productKey.key }}
|
|
|
|
key: {{ .Values.kubecostProductConfigs.productKey.key | quote }}
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|