Files
test-workflow/nextflow.config
2026-05-18 21:34:38 +02:00

36 lines
614 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.1'
imagePullPolicy = 'IfNotPresent'
nodeInit {
enabled = false
image = 'gitea.kleine.eulenhexe.de/kevin/ma/dvfs-agent:0.1'
command = ['/bin/agent']
wait = 'Running'
cleanup = false
}
}