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"
|
value: "keycloak"
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 5432
|
- 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
|
apiVersion: v1
|
||||||
kind: Service
|
kind: Service
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue