diff --git a/charts/objecten/CHANGELOG.md b/charts/objecten/CHANGELOG.md index c34c3d6..f4b0738 100644 --- a/charts/objecten/CHANGELOG.md +++ b/charts/objecten/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 2.7.2 (2025-03-12) + +- [#195] `DISABLE_2FA` setting was defined twice by mistake in the config map. Now it is present only once. + ## 2.7.1 (2025-02-11) - [#172] Add Horizontal Pod Autoscaler for the worker. Fix the deployment to look for the `.Values.worker.autoscaling.enabled` value instead of the `.Values.autoscaling.enabled` when setting the replicas of the worker. diff --git a/charts/objecten/Chart.yaml b/charts/objecten/Chart.yaml index 1efc506..964628d 100644 --- a/charts/objecten/Chart.yaml +++ b/charts/objecten/Chart.yaml @@ -3,7 +3,7 @@ name: objecten description: API om objecten te beheren die behoren bij een bepaald objecttype type: application -version: 2.7.1 +version: 2.7.2 appVersion: 3.0.0 dependencies: diff --git a/charts/objecten/README.md b/charts/objecten/README.md index c4f6609..aa64c9c 100644 --- a/charts/objecten/README.md +++ b/charts/objecten/README.md @@ -1,6 +1,6 @@ # objecten -![Version: 2.7.1](https://img.shields.io/badge/Version-2.7.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0](https://img.shields.io/badge/AppVersion-3.0.0-informational?style=flat-square) +![Version: 2.7.2](https://img.shields.io/badge/Version-2.7.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 3.0.0](https://img.shields.io/badge/AppVersion-3.0.0-informational?style=flat-square) API om objecten te beheren die behoren bij een bepaald objecttype diff --git a/charts/objecten/templates/configmap.yaml b/charts/objecten/templates/configmap.yaml index 4f0e7d6..80d184a 100644 --- a/charts/objecten/templates/configmap.yaml +++ b/charts/objecten/templates/configmap.yaml @@ -72,9 +72,6 @@ data: {{- if .Values.settings.notificationsDisabled }} NOTIFICATIONS_DISABLED: "True" {{- end }} - {{ if .Values.settings.disable2fa }} - DISABLE_2FA: "True" - {{- end }} {{ if .Values.configuration.superuser.username }} OBJECTS_SUPERUSER_USERNAME: {{ .Values.configuration.superuser.username | toString | quote }} OBJECTS_SUPERUSER_EMAIL: {{ .Values.configuration.superuser.email | toString | quote }}