feat: simpler test workflow with configuration
This commit is contained in:
35
test/nextflow.config
Normal file
35
test/nextflow.config
Normal file
@@ -0,0 +1,35 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user