fix: actually use banded strategy when requested

This commit is contained in:
2026-09-11 20:21:50 +02:00
parent dfae78af71
commit 27655dc1b8
6 changed files with 54 additions and 2 deletions

41
sarek-1/nextflow.config Normal file
View File

@@ -0,0 +1,41 @@
plugins {
id 'k8s-dvfs@0.1.0'
}
workDir = '/workspace'
process {
executor = 'k8s-dvfs'
//container = 'ubuntu:22.04'
pod = [
imagePullPolicy: 'IfNotPresent'
]
}
k8s {
namespace = 'trogantk'
storageClaimName = 'cephfs-trogantk'
storageMountPath = '/workspace'
launchDir = '/workspace/launch'
projectDir = '/workspace/projects'
cleanup = true
imagePullPolicy = 'IfNotPresent'
schedulerInterval = '1m'
recordTaskRuntimes = false
schedulingStrategy = 'DVFS'
runtimeComparisonEpsilon = '10s'
dvfsSchedulingNumTopRuntimes = 3
nodeLabel = 'usedby=trogantk'
nodeInit {
enabled = true
image = 'gitea.kleine.eulenhexe.de/kevin/ma/dvfs-agent:0.2.0'
command = ['/usr/local/bin/agent']
wait = 'Running'
cleanup = true
}
}