-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvalues.yaml
101 lines (90 loc) · 2.89 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
image:
repository: prodrigestivill/postgres-backup-local
tag: 12-alpine-8d72d2d
## set to true if you would like to see extra information on logs
## It turns BASH and/or NAMI debugging in the image
##
debug: false
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
##
pullPolicy: IfNotPresent
## Optionally specify an array of imagePullSecrets.
## Secrets must be manually created in the namespace.
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/
## Example:
## pullSecrets:
## - myRegistryKeySecretName
##
pullSecrets: []
auth:
# existingPasswordSecret: ""
postgres_user: changeMe
postgres_password: changeMe
config:
postgres_host: ""
postgres_port: 5432
postgres_db: auth
postgres_extra_opts: "-Z6"
schedule: "@daily"
backup_keep_days: 7
backup_keep_weeks: 4
backup_keep_months: 6
healthcheck_port: 8080
## @param extraEnvVars Extra environment variables to add to RabbitMQ pods
## E.g:
## extraEnvVars:
## - name: FOO
## value: BAR
##
extraEnvVars: []
replicas: 1
persistence:
## @param persistence.enabled Enable postgres-backup-local data persistence using PVC
##
enabled: false
## @param persistence.storageClass PVC Storage Class for postgres-backup-local data volume
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
storageClass: ""
## @param persistence.selector Selector to match an existing Persistent Volume
## selector:
## matchLabels:
## app: my-app
##
selector: {}
## @param persistence.accessMode PVC Access Mode for postgres-backup-local data volume
##
accessMode: ReadWriteOnce
## @param persistence.existingClaim Provide an existing PersistentVolumeClaims
## The value is evaluated as a template
## So, for example, the name can depend on .Release or .Chart
##
existingClaim: ""
## @param persistence.mountPath The path the volume will be mounted at
## Note: useful when using custom postgres-backup-local images
##
mountPath: /data
## @param persistence.subPath The subdirectory of the volume to mount to
## Useful in dev environments and one PV for multiple services
##
subPath: ""
## @param persistence.size PVC Storage Request for postgres-backup-local data volume
##
size: 8Gi
## @param persistence.annotations Persistence annotations. Evaluated as a template
## Example:
## annotations:
## example.io/disk-volume-type: SSD
##
annotations: {}
serviceAccount:
create: true
annotations: {}
automountServiceAccountToken: false
resources: {}