-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathworkflow-scheduler.yaml
More file actions
42 lines (42 loc) · 892 Bytes
/
workflow-scheduler.yaml
File metadata and controls
42 lines (42 loc) · 892 Bytes
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
apiVersion: v1
kind: Pod
metadata:
labels:
app: nextflow
component: scheduler
tier: control-plane
name: workflow-scheduler
spec:
containers:
- env:
- name: SCHEDULER_NAME
value: workflow-scheduler
- name: AUTOCLOSE
value: "false"
image: commonworkflowscheduler/kubernetesscheduler:v1.0
imagePullPolicy: Always
name: workflow-scheduler
resources:
limits:
cpu: "2"
memory: 1400Mi
requests:
cpu: "2"
memory: 1400Mi
volumeMounts:
- mountPath: /input
name: vol-1
- mountPath: /data
name: vol-2
nodeSelector:
cwsscheduler: 'true'
securityContext:
runAsUser: 0
serviceAccount: nextflowscheduleraccount
volumes:
- name: vol-1
persistentVolumeClaim:
claimName: api-exp-input
- name: vol-2
persistentVolumeClaim:
claimName: api-exp-data