38 lines
670 B
Plaintext
38 lines
670 B
Plaintext
plugins {
|
|
id 'nf-k8s'
|
|
}
|
|
|
|
workDir = '/workspace'
|
|
|
|
process {
|
|
executor = 'k8s'
|
|
container = 'ubuntu:22.04'
|
|
|
|
pod = [
|
|
imagePullPolicy: 'IfNotPresent'
|
|
]
|
|
}
|
|
|
|
k8s {
|
|
namespace = 'default'
|
|
|
|
storageClaimName = 'my-claim'
|
|
storageMountPath = '/workspace'
|
|
launchDir = '/workspace/launch'
|
|
projectDir = '/workspace/projects'
|
|
cleanup = false
|
|
|
|
nextflowImage = 'gitea.kleine.eulenhexe.de/kevin/ma/nextflow-dvfs:0.4.2'
|
|
imagePullPolicy = 'IfNotPresent'
|
|
schedulerInterval = '10s'
|
|
recordTaskRuntimes = true
|
|
|
|
nodeInit {
|
|
enabled = false
|
|
image = 'gitea.kleine.eulenhexe.de/kevin/ma/dvfs-agent:0.1'
|
|
command = ['/bin/agent']
|
|
wait = 'Running'
|
|
cleanup = false
|
|
}
|
|
}
|