Skip to content

Commit

Permalink
Merge pull request #192 from maykinmedia/fix/191-waiting-period
Browse files Browse the repository at this point in the history
🐛 [#191] Add support for WAITING_PERIOD env var
  • Loading branch information
SilviaAmAm authored Feb 24, 2025
2 parents e60fb54 + 29a2b93 commit 0773cd3
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
4 changes: 4 additions & 0 deletions charts/openarchiefbeheer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion charts/openarchiefbeheer/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion charts/openarchiefbeheer/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down Expand Up @@ -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` | |
Expand Down
4 changes: 4 additions & 0 deletions charts/openarchiefbeheer/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}


2 changes: 2 additions & 0 deletions charts/openarchiefbeheer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: ""
Expand Down

0 comments on commit 0773cd3

Please sign in to comment.