File tree Expand file tree Collapse file tree 6 files changed +45
-3
lines changed
automation/dbildungs-iam-server Expand file tree Collapse file tree 6 files changed +45
-3
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
- appVersion : spsh-1654
2
+ appVersion : sha-83813bd
3
3
description : dBildungs-IAM-server
4
4
name : dbildungs-iam-server
5
5
type : application
6
- version : 0.0.0-spsh-1654- 20250113-1100
6
+ version : 0.0.1- 20250113-1105
Original file line number Diff line number Diff line change 66
66
"REALM" : " defrealm"
67
67
},
68
68
"IMPORT" : {
69
- "CSV_FILE_MAX_SIZE_IN_MB" : 5 ,
69
+ "CSV_FILE_MAX_SIZE_IN_MB" : 10 ,
70
70
"CSV_MAX_NUMBER_OF_USERS" : 2000 ,
71
71
"PASSPHRASE_SECRET" : " 44abDqJk2qgwRbpGfO0VZx7DpXeFsm7R" ,
72
72
"PASSPHRASE_SALT" : " YDp6fYkbUcj4ZkyAOnbAHGQ9O72htc5M"
Original file line number Diff line number Diff line change 126
126
secretKeyRef:
127
127
name: { { default .Values.auth.existingSecret .Values.auth.secretName } }
128
128
key: vidis-keycloak-role
129
+ - name: METRICS_BASIC_AUTH
130
+ valueFrom:
131
+ secretKeyRef:
132
+ name: { { default .Values.auth.existingSecret .Values.auth.secretName } }
133
+ key: auth
129
134
{ {- end} }
Original file line number Diff line number Diff line change 30
30
port :
31
31
number : {{ $.Values.backend.service.ports.http }}
32
32
{{- end }}
33
+ {{ end }}
34
+ ---
35
+ {{if .Values.backend.ingress.healthenabled }}
36
+ apiVersion : networking.k8s.io/v1
37
+ kind : Ingress
38
+ metadata :
39
+ name : {{ template "common.names.name" . }}-health-backend
40
+ namespace : {{ template "common.names.namespace" . }}
41
+ labels :
42
+ {{- include "common.labels" . | nindent 4 }}
43
+ annotations :
44
+ nginx.ingress.kubernetes.io/rewrite-target : /health
45
+ nginx.ingress.kubernetes.io/auth-type : basic
46
+ nginx.ingress.kubernetes.io/auth-secret : {{ .Values.auth.secretName }}
47
+ nginx.ingress.kubernetes.io/auth-realm : ' Authentication Required - user'
48
+ {{- with .Values.backend.ingress.annotations }}
49
+ {{- toYaml . | nindent 4 }}
50
+ {{- end }}
51
+ spec :
52
+ tls :
53
+ - hosts :
54
+ - {{ .Values.backendHostname }}
55
+ ingressClassName : {{ .Values.backend.ingress.ingressClassName }}
56
+ rules :
57
+ - host : {{ .Values.backendHostname }}
58
+ http :
59
+ paths :
60
+ - path : /api/health
61
+ pathType : Prefix
62
+ backend :
63
+ service :
64
+ name : {{ template "common.names.name" $ }}-backend
65
+ port :
66
+ number : {{ $.Values.backend.service.ports.http }}
33
67
{{ end }}
Original file line number Diff line number Diff line change 33
33
import-passphrase-secret : {{ .Values.auth.import_passphrase_secret }}
34
34
import-passphrase-salt : {{ .Values.auth.import_passphrase_salt }}
35
35
ox-password : {{ .Values.auth.ox_password }}
36
+ auth : {{ .Values.auth.basic_auth_password }}
36
37
{{- end }}
Original file line number Diff line number Diff line change 68
68
import_passphrase_secret : ' '
69
69
import_passphrase_salt : ' '
70
70
ox_password : ' '
71
+ basic_auth_password : ' '
71
72
72
73
ox :
73
74
enabled : false
@@ -121,6 +122,7 @@ backend:
121
122
# Only enable if 2nd host name is defined
122
123
enabled2nd : false
123
124
enabled : true
125
+ healthenabled : true
124
126
ingressClassName : nginx
125
127
pathType : Prefix
126
128
portnumber : 80
You can’t perform that action at this time.
0 commit comments