diff --git a/charts/openinwoner/Chart.yaml b/charts/openinwoner/Chart.yaml index ad983c1..293dfb7 100644 --- a/charts/openinwoner/Chart.yaml +++ b/charts/openinwoner/Chart.yaml @@ -3,7 +3,7 @@ name: openinwoner description: Platform voor gemeenten en overheden om producten inzichtelijker en toegankelijker te maken voor inwoners. type: application -version: 1.6.0-beta.3 +version: 1.6.1-beta.0 appVersion: latest icon: https://docs.openinwoner.nl/en/latest/_static/logo.png diff --git a/charts/openinwoner/README.md b/charts/openinwoner/README.md index e3c9e85..b3b5e92 100644 --- a/charts/openinwoner/README.md +++ b/charts/openinwoner/README.md @@ -1,6 +1,6 @@ # openinwoner -![Version: 1.6.0-beta.1](https://img.shields.io/badge/Version-1.6.0--beta.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.6.1-beta.0](https://img.shields.io/badge/Version-1.6.1--beta.0-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) Platform voor gemeenten en overheden om producten inzichtelijker en toegankelijker te maken voor inwoners. @@ -179,8 +179,10 @@ Platform voor gemeenten en overheden om producten inzichtelijker en toegankelijk | settings.smsgateway.apikey | string | `""` | | | settings.smsgateway.backend | string | `""` | For example "open_inwoner.accounts.gateways.MessageBird" | | settings.uwsgi.harakiri | string | `""` | | +| settings.uwsgi.httpTimeout | string | `""` | | | settings.uwsgi.master | bool | `false` | | | settings.uwsgi.maxRequests | string | `""` | | +| settings.uwsgi.port | string | `""` | | | settings.uwsgi.processes | string | `""` | | | settings.uwsgi.threads | string | `""` | | | tags.elasticsearch | bool | `true` | | diff --git a/charts/openinwoner/templates/configmap.yaml b/charts/openinwoner/templates/configmap.yaml index bd352f9..907c294 100644 --- a/charts/openinwoner/templates/configmap.yaml +++ b/charts/openinwoner/templates/configmap.yaml @@ -71,3 +71,10 @@ data: {{- if .Values.settings.uwsgi.harakiri }} UWSGI_HARAKIRI: {{ .Values.settings.uwsgi.harakiri | toString | quote }} {{- end }} + {{- if .Values.settings.uwsgi.port }} + UWSGI_PORT: {{ .Values.settings.uwsgi.port | toString | quote }} + {{- end }} + {{- if .Values.settings.uwsgi.httpTimeout }} + UWSGI_HTTP_TIMEOUT: {{ .Values.settings.uwsgi.httpTimeout | toString | quote }} + {{- end }} + diff --git a/charts/openinwoner/values.yaml b/charts/openinwoner/values.yaml index 7e012d5..f6122ef 100644 --- a/charts/openinwoner/values.yaml +++ b/charts/openinwoner/values.yaml @@ -275,6 +275,8 @@ settings: processes: "" maxRequests: "" harakiri: "" + port: "" + httpTimeout: "" # -- Runs a init container that will run /app/src/manage.py search_index --rebuild -f. You might want to enable this one time for new deployments if you want to prevent 500 errors when using the search function searchInexInitContainer: false