-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathcron-jobs.yaml
More file actions
48 lines (47 loc) · 1.34 KB
/
cron-jobs.yaml
File metadata and controls
48 lines (47 loc) · 1.34 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
---
apiVersion: batch/v1
kind: CronJob
metadata:
name: kokkos-sync
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.47
imagePullPolicy: IfNotPresent
resources:
requests:
cpu: 500m
memory: 500M
env:
- name: GITHUB_TOKEN
valueFrom:
secretKeyRef:
name: gh-gl-sync
key: kokkos-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:
- "kokkos/kokkos"
- "ssh://git@ssh.gitlab.spack.io/kokkos/kokkos"
- "https://gitlab.spack.io"
- "kokkos/kokkos"
- "--sync-draft-prs"
nodeSelector:
spack.io/node-pool: base