-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathvalues.yaml
38 lines (34 loc) · 947 Bytes
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
image:
repository: postgres
tag: 10-alpine
pullPolicy: IfNotPresent
storage:
class: ~
accessModes: ReadWriteOnce
dataSize: 1Gi
# -- Use an existing PersistentVolumeClaim, overrides values above
existingClaim: ""
backup:
# There are two possible backup destinations currently implemented, http and pvc
destination: http
pvc:
class: ~
accessModes: ReadWriteOnce
dataSize: 1Gi
# -- Use an existing PersistentVolumeClaim, overrides values above
existingClaim: ""
configs:
RESTORE_URL: ""
BACKUP_URL: ""
PGPASSWORD: ""
DBHOST: firefly-firefly-db
DBPORT: "5432"
DBNAME: firefly
DBUSER: firefly
TZ: Europe/Amsterdan
POSTGRES_HOST_AUTH_METHOD: trust
POSTGRES_USER: firefly
POSTGRES_PASSWORD: ""
# -- Set this to the name of a secret to load environment variables from. If defined, values in the secret will override values in configs
existingSecret: ""
backupSchedule: "0 3 * * *"