Skip to content

Commit 6462b6b

Browse files
fix: Max workflow version is v2.17.0
Using workflow version v3.0.0 requires migrating to the new SRM chart.
1 parent ce80cd1 commit 6462b6b

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.version/Jenkinsfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ pipeline {
115115
mariaDBVersion = currentVersions[1]
116116
// Note: v1.34.0 is the most recent TO version that the legacy K8s chart (codedx-kubernetes) supports
117117
toolOrchestrationVersion = 'v1.34.0'
118-
workflowVersion = currentVersions[3]
118+
// Note: v1.34.0 is the most recent Workflow version that the legacy K8s chart (codedx-kubernetes) supports
119+
workflowVersion = 'v2.17.0'
119120
restoreDBVersion = currentVersions[4]
120121

121122
def isCurrentVersion = sh(returnStdout: true, script: "pwsh -command \"&{ . ./.version/common.ps1; Test-CodeDxVersion './setup/core/setup.ps1' './admin/restore-db.ps1' '$codeDxVersion' '$mariaDBVersion' '$toolOrchestrationVersion' '$workflowVersion' '$restoreDBVersion' }\"")

setup/core/setup.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<#PSScriptInfo
2-
.VERSION 2.17.0
2+
.VERSION 2.17.1
33
.GUID 47733b28-676e-455d-b7e8-88362f442aa3
44
.AUTHOR Code Dx
55
#>
@@ -67,8 +67,8 @@ param (
6767
[string] $imageCodeDxTomcatInit = 'codedx/codedx-tomcat:v2024.6.0',
6868
[string] $imageMariaDB = 'codedx/codedx-mariadb:v1.31.0',
6969
[string] $imageMinio = 'bitnami/minio:2021.4.6-debian-10-r11',
70-
[string] $imageWorkflowController = 'codedx/codedx-workflow-controller:v3.0.0',
71-
[string] $imageWorkflowExecutor = 'codedx/codedx-argoexec:v3.0.0',
70+
[string] $imageWorkflowController = 'codedx/codedx-workflow-controller:v2.17.0',
71+
[string] $imageWorkflowExecutor = 'codedx/codedx-argoexec:v2.17.0',
7272

7373
[int] $toolServiceReplicas = 3,
7474

0 commit comments

Comments
 (0)