move subscriptions into the with clause

This commit is contained in:
Noam Gal 2024-05-12 18:08:05 +03:00
parent 6e65e03eca
commit 36ae990538
No known key found for this signature in database

View file

@ -21,10 +21,10 @@ data:
{{- with $notifiers }}
{{- toYaml . | nindent 2 }}
{{- end }}
{{- with $subscriptions }}
subscriptions: |
{{- with $subscriptions }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with (merge .Values.notifications.templates .Values.codefresh.promotions.notifications.templates) }}
{{- toYaml . | nindent 2 }}
{{- end }}