Skip to content

Commit

Permalink
Merge release1.0 into PR
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Schiborr committed Nov 29, 2024
1 parent bee1b91 commit 865da7c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 24 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,21 +66,6 @@
secretKeyRef:
name: {{ default .Values.auth.existingSecret .Values.auth.secretName }}
key: pi-admin-password
- name: SYSTEM_RENAME_WAITING_TIME_IN_SECONDS # TODO
valueFrom:
secretKeyRef:
name: {{ default .Values.auth.existingSecret .Values.auth.secretName }}
key: system-rename-waiting-time-in-seconds
- name: SYSTEM_STEP_UP_TIMEOUT_IN_SECONDS # TODO
valueFrom:
secretKeyRef:
name: {{ default .Values.auth.existingSecret .Values.auth.secretName }}
key: system-step-up-timeout-in-seconds
- name: SYSTEM_STEP_UP_TIMEOUT_ENABLED # TODO
valueFrom:
secretKeyRef:
name: {{ default .Values.auth.existingSecret .Values.auth.secretName }}
key: system-step-up-timeout-enabled
- name: REDIS_PASSWORD
valueFrom:
secretKeyRef:
Expand Down
3 changes: 3 additions & 0 deletions charts/dbildungs-iam-server/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,6 @@ data:
ITSLEARNING_ROOT: '{{ .Values.itslearning.root }}'
ITSLEARNING_ROOT_OEFFENTLICH: '{{ .Values.itslearning.rootOeffentlich }}'
ITSLEARNING_ROOT_ERSATZ: '{{ .Values.itslearning.rootErsatz }}'
SYSTEM_RENAME_WAITING_TIME_IN_SECONDS: '{{ .Values.system.rename_waiting_time_in_seconds }}'
SYSTEM_STEP_UP_TIMEOUT_IN_SECONDS: '{{ .Values.system.step_up_timeout_in_seconds }}'
SYSTEM_STEP_UP_TIMEOUT_ENABLED: '{{ .Values.system.step_up_timeout_enabled }}'
3 changes: 0 additions & 3 deletions charts/dbildungs-iam-server/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,6 @@ data:
itslearning-password: {{ .Values.auth.itslearning_password }}
pi-admin-user: {{ .Values.auth.pi_admin_user }}
pi-admin-password: {{ .Values.auth.pi_admin_password }}
system-rename-waiting-time-in-seconds: {{ .Values.auth.system_rename_waiting_time_in_seconds }} # TODO
system-step-up-timeout-in-seconds: {{ .Values.auth.system_step_up_timeout_in_seconds }} # TODO
system-step-up-enabled: {{ .Values.auth.system_step_up_enabled }} # TODO
secrets-json: {{ .Values.auth.secrets_json }}
redis-password: {{ .Values.auth.redis_password }}
{{- end }}
14 changes: 8 additions & 6 deletions charts/dbildungs-iam-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,20 @@ ldap:
itslearning:
enabled: false
endpoint: https://enterprise.itslintegrations.com/WCFServiceLibrary/ImsEnterpriseServicesPort.svc
root: sh
rootOeffentlich: oeffentlich
rootErsatz: ersatz

privacyidea:
url: https://privacyidea.dev.spsh.dbildungsplattform.de
renameWaitingTime: 5
realm: ucs_users
userResolver: ucs_users
root: sh
rootOeffentlich: oeffentlich
rootErsatz: ersatz

system:
rename_waiting_time_in_seconds: ''
step_up_timeout_in_seconds: ''
step_up_timeout_enabled: ''

auth:
# existingSecret: Refers to a secret already present in the cluster, which is required.
Expand All @@ -59,9 +64,6 @@ auth:
itslearning_password: ''
pi_admin_user: ''
pi_admin_password: ''
system_rename_waiting_time_in_seconds: '' # TODO
system_step_up_timeout_in_seconds: '' # TODO
system_step_up_timeout_enabled: '' # TODO
redis_password: ''

backend:
Expand Down

0 comments on commit 865da7c

Please sign in to comment.