-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcron-jobs.yaml
More file actions
106 lines (105 loc) · 3.02 KB
/
cron-jobs.yaml
File metadata and controls
106 lines (105 loc) · 3.02 KB
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
102
103
104
105
106
---
apiVersion: batch/v1
kind: CronJob
metadata:
name: gh-gl-sync-packages
namespace: custom
spec:
schedule: "*/5 * * * *"
concurrencyPolicy: Forbid
jobTemplate:
spec:
activeDeadlineSeconds: 1200 # terminate any running job after 20 minutes
backoffLimit: 0
template:
spec:
restartPolicy: Never
containers:
- name: sync
image: ghcr.io/spack/ci-bridge:0.0.46
imagePullPolicy: IfNotPresent
resources:
requests:
cpu: 500m
memory: 500M
env:
- name: GITHUB_TOKEN
valueFrom:
secretKeyRef:
name: gh-gl-sync
key: github-access-token
# This secret is double base64 encoded
- name: GITLAB_SSH_KEY_BASE64
valueFrom:
secretKeyRef:
name: gh-gl-sync
key: gitlab-ssh-key
envFrom:
- configMapRef:
name: gh-gl-sync-sentry-config
args:
- "spack/spack-packages"
- "ssh://git@ssh.gitlab.spack.io/spack/spack-packages"
- "https://gitlab.spack.io"
- "spack/spack-packages"
- "--pr-mirror-bucket"
- "spack-binaries-prs"
- "--main-branch"
- "develop"
- "--prereq-check"
- "all-prechecks"
nodeSelector:
spack.io/node-pool: base
---
apiVersion: batch/v1
kind: CronJob
metadata:
name: gh-gl-sync-spack
namespace: custom
spec:
schedule: "3-59/5 * * * *"
suspend: true
concurrencyPolicy: Forbid
jobTemplate:
spec:
activeDeadlineSeconds: 1200 # terminate any running job after 20 minutes
backoffLimit: 0
template:
spec:
restartPolicy: Never
containers:
- name: sync
image: ghcr.io/spack/ci-bridge:0.0.46
imagePullPolicy: IfNotPresent
resources:
requests:
cpu: 500m
memory: 500M
env:
- name: GITHUB_TOKEN
valueFrom:
secretKeyRef:
name: gh-gl-sync
key: github-access-token
# This secret is double base64 encoded
- name: GITLAB_SSH_KEY_BASE64
valueFrom:
secretKeyRef:
name: gh-gl-sync
key: gitlab-ssh-key
envFrom:
- configMapRef:
name: gh-gl-sync-sentry-config
args:
- "spack/spack"
- "ssh://git@ssh.gitlab.spack.io/spack/spack"
- "https://gitlab.spack.io"
- "spack/spack"
- "--pr-mirror-bucket"
- "spack-binaries-prs"
- "--main-branch"
- "develop"
- "--prereq-check"
- "all-prechecks"
nodeSelector:
spack.io/node-pool: base