From 1febdbe11fc9479427cb85ca39bbdd6577560b67 Mon Sep 17 00:00:00 2001 From: Olamide Isreal Date: Thu, 26 Mar 2026 16:03:43 +0100 Subject: [PATCH] Force image pull in k8s profiles to pick up latest image --- nextflow.config | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nextflow.config b/nextflow.config index cb33984..378784a 100644 --- a/nextflow.config +++ b/nextflow.config @@ -21,10 +21,16 @@ profiles { process { executor = 'k8s' } + k8s { + pullPolicy = 'Always' + } } k8s_gpu { process { executor = 'k8s' } + k8s { + pullPolicy = 'Always' + } } }