Skip to content

Commit

Permalink
dbildungs-iam-keycloak
Browse files Browse the repository at this point in the history
  • Loading branch information
dbildungs-iam-keycloak-gha committed Nov 29, 2024
1 parent 35c7b11 commit bf40b1b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
4 changes: 2 additions & 2 deletions automation/dbildungs-iam-keycloak/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
appVersion: DBP-1067
appVersion: DBP-0000
description: A Helm Chart for the dbildungs-iam-keycloak
name: dbildungs-iam-keycloak
type: application
version: 0.0.0-dbp-1067-20241129-1014
version: 0.0.0-dbp-0000-20241129-1115
15 changes: 13 additions & 2 deletions automation/dbildungs-iam-keycloak/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
apiVersion: apps/v1
kind: Deployment
kind: StatefulSet
metadata:
name: {{ template "common.names.name" . }}
namespace: {{ template "common.names.namespace" . }}
Expand Down Expand Up @@ -134,16 +134,27 @@ spec:
- configMapRef:
name: {{ template "common.names.name" . }}
volumeMounts:
- name: data
mountPath: /data
- mountPath: "/opt/keycloak/data/import"
name: realm-config
readOnly: true
{{- with .Values.extraVolumes }}
{{- toYaml . | nindent 12 }}
{{- end }}

volumes:
- name: realm-config
configMap:
name: {{ .Values.realm.name }}
{{- with .Values.extraVolumes }}
{{- toYaml . | nindent 8 }}
{{- end }}
{{- end }}
volumeClaimTemplates:
- metadata:
name: data
spec:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
storage: {{ .Values.persistence.size }}
4 changes: 4 additions & 0 deletions automation/dbildungs-iam-keycloak/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ ingress:
path: /
pathType: Prefix
annotations:
nginx.ingress.kubernetes.io/affinity: "cookie"
nginx.ingress.kubernetes.io/proxy-buffer-size: "16k"
nginx.ingress.kubernetes.io/proxy-buffers-number: "4"

Expand All @@ -118,3 +119,6 @@ autoscaling:

status:
url: "https://status.dev.spsh.dbildungsplattform.de/"

persistence:
size: 10Gi

0 comments on commit bf40b1b

Please sign in to comment.