diff --git a/README.md b/README.md index 561159cf7..d09fae74d 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ for more in-depth information. | [openshift-etcd-backup](charts/openshift-etcd-backup) | Chart for openshift-etcd-backup ... | ![Version: 1.5.x](https://img.shields.io/badge/version-1.5.x-brightgreen) | ![App version: 1.5.x](https://img.shields.io/badge/app%20version-1.5.x-brightgreen) | | [osschallenge](charts/osschallenge) | Chart for OSS-Challenge application | ![Version: 0.x](https://img.shields.io/badge/version-0.x-brightgreen) | ![App version: ed.x](https://img.shields.io/badge/app%20version-ed.x-brightgreen) | | [rmd](charts/rmd) | Chart for Rmd.io application | ![Version: 0.x](https://img.shields.io/badge/version-0.x-brightgreen) | ![App version: ed.x](https://img.shields.io/badge/app%20version-ed.x-brightgreen) | -| [timed](charts/timed) | Chart for Timed application | ![Version: 0.x](https://img.shields.io/badge/version-0.x-brightgreen) | ![App version: 1.3.x](https://img.shields.io/badge/app%20version-1.3.x-brightgreen) | +| [timed](charts/timed) | Chart for Timed application | ![Version: 0.x](https://img.shields.io/badge/version-0.x-brightgreen) | ![App version: 1.4.x](https://img.shields.io/badge/app%20version-1.4.x-brightgreen) | | [vault-auth](charts/vault-auth) | A helm chart to install the vaul... | ![Version: 0.x](https://img.shields.io/badge/version-0.x-brightgreen) | ![App version: 0.x](https://img.shields.io/badge/app%20version-0.x-brightgreen) | | [vault-monitoring](charts/vault-monitoring) | monitor your vault server from w... | ![Version: 0.x](https://img.shields.io/badge/version-0.x-brightgreen) | ![App version: 0.x](https://img.shields.io/badge/app%20version-0.x-brightgreen) | diff --git a/charts/timed/Chart.yaml b/charts/timed/Chart.yaml index 63a506ec2..1e2b86053 100644 --- a/charts/timed/Chart.yaml +++ b/charts/timed/Chart.yaml @@ -2,8 +2,8 @@ apiVersion: v2 name: timed description: Chart for Timed application type: application -version: 0.7.11 -appVersion: v1.3.0 +version: 0.7.12 +appVersion: v1.4.2 keywords: - timed - tracking diff --git a/charts/timed/README.md b/charts/timed/README.md index 2ac474877..3778f9ca6 100644 --- a/charts/timed/README.md +++ b/charts/timed/README.md @@ -1,6 +1,6 @@ # timed -![Version: 0.7.11](https://img.shields.io/badge/Version-0.7.11-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.3.0](https://img.shields.io/badge/AppVersion-v1.3.0-informational?style=flat-square) +![Version: 0.7.12](https://img.shields.io/badge/Version-0.7.12-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.4.2](https://img.shields.io/badge/AppVersion-v1.4.2-informational?style=flat-square) Chart for Timed application @@ -57,7 +57,7 @@ This chart is maintained by [Adfinis](https://adfinis.com/?pk_campaign=github&pk | backend.cronjobs.redmineReport | object | `{"command":["./manage.py","redmine_report"],"schedule":"0 1 * * 1"}` | Redmine report | | backend.image.pullPolicy | string | `"IfNotPresent"` | Backend image pull policy | | backend.image.repository | string | `"adfinissygroup/timed-backend"` | Backend image name | -| backend.image.tag | string | `"v1.3.0"` | Backend version (optional) in case it differs from appVersion in Chart.yaml | +| backend.image.tag | string | `"v1.4.2"` | Backend version (optional) in case it differs from appVersion in Chart.yaml | | backend.livenessProbe.enabled | bool | `true` | Enable liveness probe on backend | | backend.livenessProbe.failureThreshold | int | `6` | Number of tries to perform the probe | | backend.livenessProbe.initialDelaySeconds | int | `60` | Number of seconds after the container has started before liveness probe is initiated | @@ -81,6 +81,7 @@ This chart is maintained by [Adfinis](https://adfinis.com/?pk_campaign=github&pk | backend.settings.emailUrl | string | `"smtp://localhost:25"` | Connection string of SMTP server to send mails | | backend.settings.gunicorn.cmdArgs | string | `""` | gunicorn additional arguments | | backend.settings.gunicorn.workers | int | `8` | Number of gunicorn workers | +| backend.settings.maxNumberFields | int | `2000` | Number of fields that are sent when saving changes on a model. | | backend.settings.sentry.dsn | string | `nil` | Sentry DSN for error reporting. Set to enable Sentry integration | | backend.settings.sentry.enabled | bool | `false` | Enable Sentry integration | | backend.settings.sentry.sendDefaultPii | string | `"True"` | Associate users to errors in Sentry | diff --git a/charts/timed/templates/configmap-backend.yaml b/charts/timed/templates/configmap-backend.yaml index f96e30fab..ce31cb7cf 100644 --- a/charts/timed/templates/configmap-backend.yaml +++ b/charts/timed/templates/configmap-backend.yaml @@ -15,6 +15,7 @@ data: DJANGO_DATABASE_USER: {{ .Values.postgresql.postgresqlUsername | quote }} DJANGO_DATABASE_PORT: {{ .Values.postgresql.service.port | quote }} DJANGO_WORK_REPORT_PATH: {{ .Values.backend.settings.workReportPath | quote }} + DJANGO_DATA_UPLOAD_MAX_NUMBER_FIELDS: {{ .Values.backend.settings.maxNumberFields | quote }} DJANGO_OIDC_DEFAULT_BASE_URL: {{ .Values.auth.oidc.url | quote }} {{- if .Values.auth.oidc.endPoints.auth }} DJANGO_OIDC_OP_AUTHORIZATION_ENDPOINT: {{ .Values.auth.oidc.endPoints.auth | quote }} diff --git a/charts/timed/values.yaml b/charts/timed/values.yaml index 7b795a422..658ce8a02 100644 --- a/charts/timed/values.yaml +++ b/charts/timed/values.yaml @@ -12,7 +12,7 @@ backend: # backend.image.repository -- Backend image name repository: adfinissygroup/timed-backend # backend.image.tag -- Backend version (optional) in case it differs from appVersion in Chart.yaml - tag: v1.3.0 + tag: v1.4.2 # backend.image.pullPolicy -- Backend image pull policy pullPolicy: IfNotPresent service: @@ -75,6 +75,8 @@ backend: serverEmail: webmaster@chart-example.local # backend.settings.workReportPath -- Path where the workreport shall be loaded from. The contents of the default path is filled from `configmap-workreport.yaml`. workReportPath: /etc/workreport + # backend.settings.maxNumberFields -- Number of fields that are sent when saving changes on a model. + maxNumberFields: 2000 # backend.settings.admins -- Django administrators, example: Jon Doe admins: [] gunicorn: