simplify postgresql folder setup

This commit is contained in:
kjeld Schouten-Lebbing 2021-08-13 23:43:13 +02:00
parent 19877edf3b
commit 175b33aeb2
No known key found for this signature in database
GPG Key ID: 4CDAD4A532BC1EDB
6 changed files with 13 additions and 18 deletions

View File

@ -1,7 +1,7 @@
apiVersion: v2
kubeVersion: ">=1.16.0-0"
name: postgresql
version: 1.0.0
version: 1.0.1
appVersion: "auto"
description: PostgresSQL
type: application

View File

@ -9,7 +9,6 @@ image:
pullPolicy: IfNotPresent
tag: "13.3"
pgdatapath: "/data"
envValueFrom:
POSTGRES_PASSWORD:
@ -18,7 +17,6 @@ envValueFrom:
key: "postgresql-password"
envTpl:
PGDATA: "{{ .Values.pgdatapath }}"
POSTGRES_USER: "{{ .Values.postgresqlUsername }}"
POSTGRES_DB: "{{ .Values.postgresqlDatabase }}"
# POSTGRESQL_POSTGRES_PASSWORD: "{{ .Values.postgrespassword }}"

View File

@ -253,8 +253,8 @@ questions:
schema:
type: dict
attrs:
- variable: data
label: "App data Storage"
- variable: db
label: "App db Storage"
description: "Stores the Application Database."
schema:
type: dict
@ -330,7 +330,7 @@ questions:
description: "Path inside the container the storage is mounted"
schema:
type: string
default: "/data"
default: "/var/lib/postgresql/data"
hidden: true
- variable: medium
label: "EmptyDir Medium"
@ -364,7 +364,7 @@ questions:
type: string
default: "100Gi"
- variable: backups
- variable: dbbackups
label: "App backup Storage"
description: "Stores the Application backups."
schema:
@ -441,7 +441,7 @@ questions:
description: "Path inside the container the storage is mounted"
schema:
type: string
default: "/backups"
default: "/dbbackups"
hidden: true
- variable: medium
label: "EmptyDir Medium"

View File

@ -12,4 +12,4 @@ data:
until pg_isready; do
sleep 5;
done;
pg_dump -U $POSTGRES_USER -d {{ .Values.postgresqlDatabase }} > /backups/$BACKUP_NAME;
pg_dump -U $POSTGRES_USER -d {{ .Values.postgresqlDatabase }} > /dbbackups/$BACKUP_NAME;

View File

@ -25,8 +25,6 @@ spec:
env:
- name: BACKUP_NAME
value: {{- printf "postgres-backup-from-%s-to-%s-revision-%d" $upgradeDict.oldChartVersion $upgradeDict.newChartVersion (int64 $upgradeDict.preUpgradeRevision) -}}
- name: PGDATA
value: {{ .Values.pgdatapath | quote }}
- name: POSTGRES_USER
value: {{ .Values.postgresqlUsername | quote }}
- name: POSTGRES_DB

View File

@ -15,15 +15,15 @@ service:
port: 5432
persistence:
data:
db:
enabled: true
type: emptyDir
backups:
mountPath: "/var/lib/postgresql/data"
dbbackups:
enabled: true
type: emptyDir
pgdatapath: "/data"
postgresqlPassword: "testpass"
postgresqlUsername: "test"
postgresqlDatabase: "test"
@ -37,7 +37,6 @@ envValueFrom:
key: "postgresql-password"
envTpl:
PGDATA: "{{ .Values.pgdatapath }}"
POSTGRES_USER: "{{ .Values.postgresqlUsername }}"
POSTGRES_DB: "{{ .Values.postgresqlDatabase }}"
# POSTGRESQL_POSTGRES_PASSWORD: "{{ .Values.postgrespassword }}"