From 866a1a0a1751d0d355225197cc06fbbe9df69a40 Mon Sep 17 00:00:00 2001 From: kjeld Schouten-Lebbing Date: Sat, 14 Aug 2021 11:12:26 +0200 Subject: [PATCH] try more agressive testing settings for postgresql --- charts/stable/postgresql/Chart.yaml | 2 +- charts/stable/postgresql/values.yaml | 10 +++++++--- 2 files changed, 8 insertions(+), 4 deletions(-) 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"