26 lines
676 B
Smarty
26 lines
676 B
Smarty
{{/*
|
|
Retrieve configMap name from the name of the chart or the ConfigMap the user
|
|
specified.
|
|
*/}}
|
|
{{- define "alloy.config-map.name" -}}
|
|
{{- $values := (mustMergeOverwrite .Values.alloy (or .Values.agent dict)) -}}
|
|
{{- if $values.configMap.name -}}
|
|
{{- $values.configMap.name }}
|
|
{{- else -}}
|
|
{{- include "alloy.fullname" . }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
{{/*
|
|
The name of the config file is the default or the key the user specified in the
|
|
ConfigMap.
|
|
*/}}
|
|
{{- define "alloy.config-map.key" -}}
|
|
{{- $values := (mustMergeOverwrite .Values.alloy (or .Values.agent dict)) -}}
|
|
{{- if $values.configMap.key -}}
|
|
{{- $values.configMap.key }}
|
|
{{- else -}}
|
|
config.alloy
|
|
{{- end }}
|
|
{{- end }}
|