forked from deliveryhero/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
48 lines (42 loc) · 1.06 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
# pg_repack_settings -- Settings used by pg_repack
pg_repack_run_settings:
objectlisttype: "query"
type: "T"
cleanup: "true"
detailed_logging: "true"
parallel_job: 4
objectlist_sql: select schemaname||'.'||tablename from pg_catalog.pg_tables where schemaname = 'public'
install_maint_objects: "true"
db_settings:
host: my-db-host.domain.com
user: postgres
database: my-db
password: CHANGE_ME
# environment -- Any environment variables
environment: {}
image:
repository: maxrocketinternet/pg-repack-scheduler
tag: "0.1"
pullPolicy: IfNotPresent
# schedule -- Cron schedule of the downscale job
schedule:
# schedule.suspend -- Whether to suspend (disable) the cronjob
suspend: true
# schedule.minute -- Cron schedule minute of the downscale job
minute: "00"
# schedule.hour -- Cron schedule hour of the downscale job
hour: "04"
resources:
requests:
cpu: 10m
memory: 128Mi
limits:
cpu: 500m
memory: 128Mi
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
nodeSelector: {}
tolerations: []
affinity: {}
podLabels: {}