12 lines
444 B
YAML
12 lines
444 B
YAML
|
{{- if .Values.kubecostProductConfigs }}
|
||
|
{{- if .Values.kubecostProductConfigs.savingsRecommendationsAllowLists }}
|
||
|
apiVersion: v1
|
||
|
kind: ConfigMap
|
||
|
metadata:
|
||
|
name: "savings-recommendations-instance-allow-lists"
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
labels: {{ include "cost-analyzer.commonLabels" . | nindent 4 }}
|
||
|
data:
|
||
|
allow-lists.json: '{{ toJson .Values.kubecostProductConfigs.savingsRecommendationsAllowLists }}'
|
||
|
{{- end -}}
|
||
|
{{- end -}}
|