fix(keycloak): add pvc to keycloak-db statefulset
Build Curio HMS / build-and-deploy (push) Successful in 1m29s
Details
Build Curio HMS / build-and-deploy (push) Successful in 1m29s
Details
This commit is contained in:
parent
15aa8be96c
commit
bb7038eb29
|
|
@ -69,6 +69,17 @@ spec:
|
|||
value: "keycloak"
|
||||
ports:
|
||||
- containerPort: 5432
|
||||
volumeMounts:
|
||||
- name: keycloak-db-data
|
||||
mountPath: /var/lib/postgresql/data
|
||||
volumeClaimTemplates:
|
||||
- metadata:
|
||||
name: keycloak-db-data
|
||||
spec:
|
||||
accessModes: [ "ReadWriteOnce" ]
|
||||
resources:
|
||||
requests:
|
||||
storage: 5Gi
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: Service
|
||||
|
|
|
|||
Loading…
Reference in New Issue