argocd-helm/charts/argo-events/templates/extra-manifests.yaml
Cyril Jouve 430aaea83c
feat(argo-events): allow extraObjects to contain string template (#1994)
[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>
2023-05-06 20:18:22 +09:00

8 lines
145 B
YAML

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