diff --git a/charts/openforms2xxllnc/Chart.yaml b/charts/openforms2xxllnc/Chart.yaml index 303fba7..671d484 100644 --- a/charts/openforms2xxllnc/Chart.yaml +++ b/charts/openforms2xxllnc/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v2 name: openforms2xxllnc description: A Helm chart for running a Frank! on Kubernetes -version: 1.0.1 -appVersion: 1.1.1 +version: 1.1.0 +appVersion: 1.2.0 type: application home: https://wearefrank.github.io/openforms2xxllnc icon: https://raw.githubusercontent.com/wearefrank/charts/master/openforms2xxllnc/icon.svg diff --git a/charts/openforms2xxllnc/templates/configmap.openforms2xxllnc.specifics.yaml b/charts/openforms2xxllnc/templates/configmap.openforms2xxllnc.specifics.yaml index 3ec0a18..2e74944 100644 --- a/charts/openforms2xxllnc/templates/configmap.openforms2xxllnc.specifics.yaml +++ b/charts/openforms2xxllnc/templates/configmap.openforms2xxllnc.specifics.yaml @@ -61,6 +61,17 @@ data: {{- end }} {{- with .Values.openforms2xxllnc.workflows }} + + {{- with .stuurgegevens.zender }} + openforms2xxllnc.workflows.stuurgegevens.zender.organisatie: "{{ .organisatie }}" + openforms2xxllnc.workflows.stuurgegevens.zender.applicatie: "{{ .applicatie }}" + {{- end }} + + {{- with .stuurgegevens.ontvanger }} + openforms2xxllnc.workflows.stuurgegevens.ontvanger.organisatie: "{{ .organisatie }}" + openforms2xxllnc.workflows.stuurgegevens.ontvanger.applicatie: "{{ .applicatie }}" + {{- end }} + {{- with .autoRetries }} openforms2xxllnc.workflows.auto-retries.enabled: "{{ .enabled }}" @@ -107,4 +118,9 @@ data: openforms2xxllnc.workflows.on-error-actions.on-subject-not-equals-case-subject.template-name: "{{ .templateName }}" {{- end }} + {{- with .onErrorActions.onCaseClosed }} + openforms2xxllnc.workflows.on-error-actions.on-case-closed.send-mail: "{{ .sendMail }}" + openforms2xxllnc.workflows.on-error-actions.on-case-closed.template-name: "{{ .templateName }}" + {{- end }} + {{- end }} diff --git a/charts/openforms2xxllnc/values.yaml b/charts/openforms2xxllnc/values.yaml index 483df13..b6ead68 100644 --- a/charts/openforms2xxllnc/values.yaml +++ b/charts/openforms2xxllnc/values.yaml @@ -572,6 +572,22 @@ openforms2xxllnc: ## @section Workflows ## workflows: + ## @skip openforms2xxllnc.workflows.stuurgegevens [object] + ## + stuurgegevens: + ## @skip openforms2xxllnc.workflows.stuurgegevens.zender [object] + ## @param openforms2xxllnc.workflows.stuurgegevens.zender.organisatie [string] Gemeentecode of the gemeente sending the zs-dms requests. + ## @param openforms2xxllnc.workflows.stuurgegevens.zender.applicatie [string] Application name used when sending the zs-dms requests. + ## Defaults to ${instance.name} + zender: + organisatie: "1111" + applicatie: "" + ## @skip openforms2xxllnc.workflows.stuurgegevens.ontvanger [object] + ## @param openforms2xxllnc.workflows.stuurgegevens.ontvanger.organisatie [string] Gemeentecode of the gemeente receiving the zs-dms requests. + ## @param openforms2xxllnc.workflows.stuurgegevens.ontvanger.applicatie [string] Application name of the receiving zs-dms application. + ontvanger: + organisatie: "1111" + applicatie: "zs-dms" ## @skip openforms2xxllnc.workflows.autoRetries [object] ## @param openforms2xxllnc.workflows.autoRetries.enabled Enable automatic retries. For all workflows(unless overriden). ## @param openforms2xxllnc.workflows.autoRetries.cronExpression [string] Cron expression used for retry interval/schedule. For all workflows(unless overriden). @@ -648,5 +664,14 @@ openforms2xxllnc: onSubjectNotEqualsCaseSubject: sendEmail: false templateName: "" + ## @skip openforms2xxllnc.workflows.onErrorActions.onCaseClosed [object] + ## @param openforms2xxllnc.workflows.onErrorActions.onCaseClosed.sendEmail Enable sending a mail to the form initiator when this specific error occurs. + ## Otherwise an exception is throw, which requires manual intervention. Enabling the sending of a mail requires 'openforms2xxllnc.connections.noReplySmtp' to be configured. + ## @param openforms2xxllnc.workflows.onErrorActions.onCaseClosed.templateName [string] Name of the mail template to be used when this specific error occurs. + ## Mail templates can be configured in the 'openforms2xxllnc.mailTemplates' section. + ## + onCaseClosed: + sendEmail: false + templateName: ""