-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathcronjobs.values.yml
49 lines (45 loc) · 1008 Bytes
/
cronjobs.values.yml
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
cronJobsGeneral:
enableAffinity: false
env:
- name: WORKLOAD_TYPE
value: CronJob
cronJobs:
mailing:
schedule: "00 05 * * *"
containers:
- command: send-mail
volumeMounts:
- mountPath: /app/issues-mailing.conf
name: config
subPath: issues-mailing.conf
volumes:
- name: config
type: secret
originalName: app-config
restartPolicy: OnFailure
flush-cache:
schedule: "00 * * * *"
containers:
- command: flush-cache
volumeMounts:
- mountPath: /app/main.conf
name: config
subPath: main.conf
volumes:
- name: config
type: secret
originalName: app-config
restartPolicy: OnFailure
report:
schedule: "00 2 7 * *"
containers:
- command: make-report
volumeMounts:
- mountPath: /app/main.conf
name: config
subPath: main.conf
volumes:
- name: config
type: secret
originalName: app-config
restartPolicy: OnFailure