try more agressive testing settings for postgresql

This commit is contained in:
kjeld Schouten-Lebbing
2021-08-14 11:12:26 +02:00
parent 49500cba2c
commit 866a1a0a17
2 changed files with 8 additions and 4 deletions

View File

@@ -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

View File

@@ -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"