diff --git a/charts/stable/postgresql/Chart.yaml b/charts/stable/postgresql/Chart.yaml index 68a50cbaa3b..dca2255ade0 100644 --- a/charts/stable/postgresql/Chart.yaml +++ b/charts/stable/postgresql/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 kubeVersion: ">=1.16.0-0" name: postgresql -version: 1.0.2 +version: 1.0.3 appVersion: "auto" description: PostgresSQL type: application diff --git a/charts/stable/postgresql/values.yaml b/charts/stable/postgresql/values.yaml index a834d43b722..7a70bcd6865 100644 --- a/charts/stable/postgresql/values.yaml +++ b/charts/stable/postgresql/values.yaml @@ -17,12 +17,16 @@ service: persistence: db: enabled: true - type: emptyDir mountPath: "/var/lib/postgresql/data" + type: pvc + accessMode: ReadWriteOnce + size: "100Gi" dbbackups: enabled: true - type: emptyDir - + mountPath: "/dbbackups" + type: pvc + accessMode: ReadWriteOnce + size: "100Gi" postgresqlPassword: "testpass" postgresqlUsername: "test"