increase pg volume size

the cache table can get big, we don't want an outage
This commit is contained in:
Miroslav Batchkarov 2025-03-11 20:47:12 +01:00
parent 6943d51ee3
commit 6ffa3193d3
1 changed files with 3 additions and 1 deletions

View File

@ -11,7 +11,7 @@ spec:
requests:
storage: 50Gi
limits:
storage: 10Gi
storage: 50Gi
---
apiVersion: apps/v1
kind: StatefulSet
@ -58,6 +58,8 @@ spec:
key: POSTGRES_PASSWORD
volumes:
- name: data
capacity:
storage: 50Gi
persistentVolumeClaim:
claimName: postgres-pvc
---