Skip to content

Commit

Permalink
feat(timed): add DATA_UPLOAD_MAX_NUMBER_FIELDS to env (#430)
Browse files Browse the repository at this point in the history
  • Loading branch information
trowik authored Nov 23, 2021
1 parent e42dc6e commit e992fcd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions charts/timed/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions charts/timed/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions charts/timed/templates/configmap-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
4 changes: 3 additions & 1 deletion charts/timed/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -75,6 +75,8 @@ backend:
serverEmail: [email protected]
# 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 <[email protected]>
admins: []
gunicorn:
Expand Down

0 comments on commit e992fcd

Please sign in to comment.