Skip to content

Commit

Permalink
dbildungs-iam-server
Browse files Browse the repository at this point in the history
  • Loading branch information
dbildungs-iam-server-gha committed Dec 17, 2024
1 parent c641660 commit 69e4209
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 3 deletions.
4 changes: 2 additions & 2 deletions automation/dbildungs-iam-server/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
appVersion: spsh-1387
appVersion: sha-17de936
description: dBildungs-IAM-server
name: dbildungs-iam-server
type: application
version: 0.0.0-spsh-1387-20241217-2234
version: 0.0.1-20241217-2254
5 changes: 4 additions & 1 deletion automation/dbildungs-iam-server/config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,10 @@
"REALM": "defrealm"
},
"IMPORT": {
"IMPORT_FILE_MAXGROESSE_IN_MB": 10
"CSV_FILE_MAX_SIZE_IN_MB": 10,
"CSV_MAX_NUMBER_OF_USERS": 2000,
"PASSPHRASE_SECRET": "44abDqJk2qgwRbpGfO0VZx7DpXeFsm7R",
"PASSPHRASE_SALT": "YDp6fYkbUcj4ZkyAOnbAHGQ9O72htc5M"
},
"SYSTEM": {
"RENAME_WAITING_TIME_IN_SECONDS": 3,
Expand Down
2 changes: 2 additions & 0 deletions automation/dbildungs-iam-server/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,5 @@ data:
ITSLEARNING_ROOT_OEFFENTLICH: '{{ .Values.itslearning.rootOeffentlich }}'
ITSLEARNING_ROOT_ERSATZ: '{{ .Values.itslearning.rootErsatz }}'
NODE_OPTIONS: "--max-old-space-size={{ .Values.backend.env.maxOldSpaceSize }}"
IMPORT_CSV_FILE_MAX_SIZE_IN_MB: '{{ .Values.import.csvFileMaxSizeInMB }}'
IMPORT_CSV_MAX_NUMBER_OF_USERS: '{{ .Values.import.csvMaxNumberOfUsers }}'
2 changes: 2 additions & 0 deletions automation/dbildungs-iam-server/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,6 @@ data:
vidis-region-name: {{ .Values.auth.vidis_region_name }}
vidis-keycloak-group: {{ .Values.auth.vidis_keycloak_group }}
vidis-keycloak-role: {{ .Values.auth.vidis_keycloak_role }}
import-passphrase-secret: {{ .Values.auth.import_passphrase_secret }}
import-passphrase-salt: {{ .Values.auth.import_passphrase_salt }}
{{- end }}
6 changes: 6 additions & 0 deletions automation/dbildungs-iam-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,8 @@ auth:
vidis_region_name: ''
vidis_keycloak_group: ''
vidis_keycloak_role: ''
import_passphrase_secret: ''
import_passphrase_salt: ''

backend:
replicaCount: 1
Expand Down Expand Up @@ -193,3 +195,7 @@ cronjobs:
endpoint: '/api/cron/unlock'
httpMethod: 'PUT'
script: 'cron_trigger.sh'

import:
csvFileMaxSizeInMB: 10
csvMaxNumberOfUsers: 2000

0 comments on commit 69e4209

Please sign in to comment.