1234567891011121314151617181920212223 |
- {{/* Check Env for Duplicates */}}
- {{/* Call this template:
- {{ include "ix.v1.common.helper.container.envDupeCheck" (dict "rootCtx" $ "objectData" $objectData "source" $source "key" $key) }}
- rootCtx: The root context of the chart.
- objectData: The object data to be used to render the container.
- */}}
- {{- define "ix.v1.common.helper.container.envDupeCheck" -}}
- {{- $rootCtx := .rootCtx -}}
- {{- $objectData := .objectData -}}
- {{- $source := .source -}}
- {{- $type := .type -}}
- {{- $key := .key -}}
- {{- $dupeEnv := (get $objectData.envDupe $key) -}}
- {{- if $dupeEnv -}}
- {{- fail (printf "Container - Environment Variable [%s] in [%s] tried to override the Environment Variable that is already defined in [%s]" $key $source $dupeEnv.source) -}}
- {{- end -}}
- {{- $_ := set $objectData.envDupe $key (dict "source" $source) -}}
- {{- end -}}
|