diff --git a/charts/openarchiefbeheer/CHANGELOG.md b/charts/openarchiefbeheer/CHANGELOG.md index dcbc16f..89272fe 100644 --- a/charts/openarchiefbeheer/CHANGELOG.md +++ b/charts/openarchiefbeheer/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.3.2 (2025-02-21) + +- [#191] Fix missing support for environment variable `WAITING_PERIOD`. + ## 1.3.1 (2025-02-19) - [#189] Fix duplicate environment variables in config map. diff --git a/charts/openarchiefbeheer/Chart.yaml b/charts/openarchiefbeheer/Chart.yaml index 5a233cd..b6dd604 100644 --- a/charts/openarchiefbeheer/Chart.yaml +++ b/charts/openarchiefbeheer/Chart.yaml @@ -3,7 +3,7 @@ name: openarchiefbeheer description: Opstellen, beheren en uitvoeren van vernietigingslijsten, voor gebruik met Zaakgericht werken type: application -version: 1.3.1 +version: 1.3.2 appVersion: latest dependencies: diff --git a/charts/openarchiefbeheer/README.md b/charts/openarchiefbeheer/README.md index 5592602..71c0854 100644 --- a/charts/openarchiefbeheer/README.md +++ b/charts/openarchiefbeheer/README.md @@ -1,6 +1,6 @@ # openarchiefbeheer -![Version: 1.3.1](https://img.shields.io/badge/Version-1.3.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) +![Version: 1.3.2](https://img.shields.io/badge/Version-1.3.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: latest](https://img.shields.io/badge/AppVersion-latest-informational?style=flat-square) Opstellen, beheren en uitvoeren van vernietigingslijsten, voor gebruik met Zaakgericht werken @@ -176,6 +176,7 @@ Opstellen, beheren en uitvoeren van vernietigingslijsten, voor gebruik met Zaakg | settings.uwsgi.maxRequests | string | `""` | | | settings.uwsgi.processes | string | `""` | | | settings.uwsgi.threads | string | `""` | | +| settings.waitingPeriod | string | `""` | Number of days to wait before destroying a list. Defaults to 7 in the application. | | tags.redis | bool | `true` | | | tolerations | list | `[]` | | | worker.autoscaling.enabled | bool | `false` | | diff --git a/charts/openarchiefbeheer/templates/configmap.yaml b/charts/openarchiefbeheer/templates/configmap.yaml index fdfe11a..13e83ec 100644 --- a/charts/openarchiefbeheer/templates/configmap.yaml +++ b/charts/openarchiefbeheer/templates/configmap.yaml @@ -107,4 +107,8 @@ data: {{- if .Values.settings.retry.statusForcelist }} RETRY_STATUS_FORCELIST: {{ .Values.settings.retry.statusForcelist | toString | quote }} {{- end }} + {{- if .Values.settings.waitingPeriod }} + WAITING_PERIOD: {{ .Values.settings.waitingPeriod | toString | quote }} + {{- end }} + diff --git a/charts/openarchiefbeheer/values.yaml b/charts/openarchiefbeheer/values.yaml index afa3b6e..14d85fc 100644 --- a/charts/openarchiefbeheer/values.yaml +++ b/charts/openarchiefbeheer/values.yaml @@ -182,6 +182,8 @@ settings: secretKey: "" environment: "" requestsReadTimeout: "30" + # -- Number of days to wait before destroying a list. Defaults to 7 in the application. + waitingPeriod: "" database: host: ""