2021-06-24 01:55:05 +00:00
|
|
|
{{- if .Values.saml }}
|
|
|
|
{{- if .Values.saml.enabled }}
|
|
|
|
apiVersion: v1
|
|
|
|
kind: ConfigMap
|
|
|
|
metadata:
|
|
|
|
name: {{ template "cost-analyzer.fullname" . }}-saml
|
2023-02-07 20:34:08 +00:00
|
|
|
namespace: {{ .Release.Namespace }}
|
2021-06-24 01:55:05 +00:00
|
|
|
labels:
|
|
|
|
{{ include "cost-analyzer.commonLabels" . | nindent 4 }}
|
|
|
|
data:
|
|
|
|
{{- $root := . }}
|
|
|
|
saml.json: '{{ toJson .Values.saml }}'
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|