Use v2 image tag to force K8s to pull updated image

K8s caches :latest tag. Using :v2 ensures the permission-fixed
image is pulled instead of the cached old one.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-16 17:40:38 +01:00
parent 66e7a03081
commit 8ca37f1922
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ params.msa_server = 'https://api.colabfold.com'
params.num_samples = 5 params.num_samples = 5
process CHAI1 { process CHAI1 {
container 'harbor.cluster.omic.ai/omic/chai1:latest' container 'harbor.cluster.omic.ai/omic/chai1:v2'
publishDir params.outdir, mode: 'copy' publishDir params.outdir, mode: 'copy'
stageInMode 'copy' stageInMode 'copy'
maxForks 1 maxForks 1

View File

@@ -3,7 +3,7 @@ docker {
} }
process { process {
container = 'harbor.cluster.omic.ai/omic/chai1:latest' container = 'harbor.cluster.omic.ai/omic/chai1:v2'
memory = '32 GB' memory = '32 GB'
cpus = 4 cpus = 4
} }