argocd-helm/charts/argo-rollouts/templates/extra-manifests.yaml
Cyril Jouve 80d5a6a65d
feat(argo-rollouts): allow extraObjects to contain string template (#1996)
[argo-event] allow extraObjects to contain string template

Signed-off-by: Cyril Jouve <jv.cyril@gmail.com>
Co-authored-by: Jason Meridth <jmeridth@gmail.com>
Co-authored-by: Aikawa <yu.croco@gmail.com>
2023-05-06 20:31:50 +09:00

8 lines
145 B
YAML

{{ range .Values.extraObjects }}
---
{{- if typeIs "string" . }}
{{- tpl . $ }}
{{- else }}
{{- tpl (toYaml .) $ }}
{{- end }}
{{ end }}