You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So, my doubt here is to try to understand if possible to template a values.yaml.gotmpl used at set section previous to submit it to Argo
My intention is to template the values.yaml used by the grafana helm-chart and create the Grafana Argo CD Application. My intention is to use environment variable({{ requiredEnv "ARGOCD_INGRESS_NAME" }}) to then pass it the gotmpl to create the Grafana ingress. If not possible , is possible to use envsubst or another better way to work with it ?
The text was updated successfully, but these errors were encountered:
I have setup a release template for Argo Application and then call it at each release, like the following example:
`
<<: *argocd-apps
namespace: monitoring
createNamespace: true
disableValidation: true
missingFileHandler: Warn
labels:
release-name: "{{
{{ .Release.Name }}
}}"layer: "infra"
set:
file: "helmfiles/grafana/{{ .Environment.Name }}/values.yaml.gotmpl"
`
So, my doubt here is to try to understand if possible to template a values.yaml.gotmpl used at set section previous to submit it to Argo
My intention is to template the values.yaml used by the grafana helm-chart and create the Grafana Argo CD Application. My intention is to use environment variable({{ requiredEnv "ARGOCD_INGRESS_NAME" }}) to then pass it the gotmpl to create the Grafana ingress. If not possible , is possible to use envsubst or another better way to work with it ?
The text was updated successfully, but these errors were encountered: