Skip to content

Commit afd0dc6

Browse files
author
Code Dx Build
committed
feat: update to latest Docker image versions
Code Dx: v2023.8.0 MariaDB: v1.24.0 Tool Orchestration: v1.26.0 Workflow: v2.17.0 RestoreDB: v1.5.0
1 parent 1a677a3 commit afd0dc6

File tree

6 files changed

+28
-28
lines changed

6 files changed

+28
-28
lines changed

admin/restore-db.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ param (
1818
[string] $namespaceCodeDx = 'cdx-app',
1919
[string] $releaseNameCodeDx = 'codedx',
2020
[int] $waitSeconds = 600,
21-
[string] $imageDatabaseRestore = 'codedx/codedx-dbrestore:v1.4.0',
21+
[string] $imageDatabaseRestore = 'codedx/codedx-dbrestore:v1.5.0',
2222
[string] $dockerImagePullSecretName,
2323
[switch] $skipCodeDxRestart
2424
)

setup/core/charts/codedx-tool-orchestration/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: codedx-tool-orchestration
3-
version: 1.90.0
4-
appVersion: "1.25.0"
3+
version: 1.91.0
4+
appVersion: "1.26.0"
55
description: A Helm chart for Code Dx Tool Orchestration
66
icon: https://codedx.com/wp-content/uploads/2017/03/CodeDx-logo.png
77
home: https://github.com/codedx/codedx-kubernetes

setup/core/charts/codedx-tool-orchestration/values.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ codedxTls:
55
enabled: false
66
caConfigMap:
77

8-
imageNameCodeDxTools: 'codedx/codedx-tools:v2023.4.8'
9-
imageNameCodeDxToolsMono: 'codedx/codedx-toolsmono:v2023.4.8'
10-
imageNamePrepare: 'codedx/codedx-prepare:v1.25.0'
11-
imageNameNewAnalysis: 'codedx/codedx-newanalysis:v1.25.0'
12-
imageNameSendResults: 'codedx/codedx-results:v1.25.0'
13-
imageNameSendErrorResults: 'codedx/codedx-error-results:v1.25.0'
14-
imageNameHelmPreDelete: 'codedx/codedx-cleanup:v1.25.0'
8+
imageNameCodeDxTools: 'codedx/codedx-tools:v2023.8.0'
9+
imageNameCodeDxToolsMono: 'codedx/codedx-toolsmono:v2023.8.0'
10+
imageNamePrepare: 'codedx/codedx-prepare:v1.26.0'
11+
imageNameNewAnalysis: 'codedx/codedx-newanalysis:v1.26.0'
12+
imageNameSendResults: 'codedx/codedx-results:v1.26.0'
13+
imageNameSendErrorResults: 'codedx/codedx-error-results:v1.26.0'
14+
imageNameHelmPreDelete: 'codedx/codedx-cleanup:v1.26.0'
1515
imagePullSecretKey: ""
1616

17-
toolServiceImageName: 'codedx/codedx-tool-service:v1.25.0'
17+
toolServiceImageName: 'codedx/codedx-tool-service:v1.26.0'
1818
toolServiceImagePullSecrets: []
1919
toolServicePort: 3333
2020

setup/core/charts/codedx/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: codedx
3-
version: 1.104.0
4-
appVersion: "2023.4.8"
3+
version: 1.105.0
4+
appVersion: "2023.8.0"
55
description: A Helm chart for Code Dx
66
icon: https://codedx.com/wp-content/uploads/2017/03/CodeDx-logo.png
77
home: https://github.com/codedx/codedx-kubernetes

setup/core/charts/codedx/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
# codedxTomcatImage specifies the image to use for the Code Dx deployment.
44
# ref: https://hub.docker.com/r/codedx/codedx-tomcat/tags
55
#
6-
codedxTomcatImage: 'codedx/codedx-tomcat:v2023.4.8'
6+
codedxTomcatImage: 'codedx/codedx-tomcat:v2023.8.0'
77

88
# codedxTomcatInitImage specifies the image to use for the Code Dx deployment initialization.
99
# ref: https://hub.docker.com/r/codedx/codedx-tomcat/tags
1010
#
11-
codedxTomcatInitImage: 'codedx/codedx-tomcat:v2023.4.8'
11+
codedxTomcatInitImage: 'codedx/codedx-tomcat:v2023.8.0'
1212

1313
# codedxTomcatImagePullPolicy specifies the policy to use when pulling the Code Dx Tomcat image.
1414
# ref: https://kubernetes.io/docs/concepts/configuration/overview/#container-images

setup/core/setup.ps1

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,19 @@ param (
5353
[string] $minioEphemeralStorageReservation,
5454
[string] $workflowEphemeralStorageReservation,
5555

56-
[string] $imageCodeDxTomcat = 'codedx/codedx-tomcat:v2023.4.8',
57-
[string] $imageCodeDxTools = 'codedx/codedx-tools:v2023.4.8',
58-
[string] $imageCodeDxToolsMono = 'codedx/codedx-toolsmono:v2023.4.8',
59-
60-
[string] $imagePrepare = 'codedx/codedx-prepare:v1.25.0',
61-
[string] $imageNewAnalysis = 'codedx/codedx-newanalysis:v1.25.0',
62-
[string] $imageSendResults = 'codedx/codedx-results:v1.25.0',
63-
[string] $imageSendErrorResults = 'codedx/codedx-error-results:v1.25.0',
64-
[string] $imageToolService = 'codedx/codedx-tool-service:v1.25.0',
65-
[string] $imagePreDelete = 'codedx/codedx-cleanup:v1.25.0',
66-
67-
[string] $imageCodeDxTomcatInit = 'codedx/codedx-tomcat:v2023.4.8',
68-
[string] $imageMariaDB = 'codedx/codedx-mariadb:v1.23.0',
56+
[string] $imageCodeDxTomcat = 'codedx/codedx-tomcat:v2023.8.0',
57+
[string] $imageCodeDxTools = 'codedx/codedx-tools:v2023.8.0',
58+
[string] $imageCodeDxToolsMono = 'codedx/codedx-toolsmono:v2023.8.0',
59+
60+
[string] $imagePrepare = 'codedx/codedx-prepare:v1.26.0',
61+
[string] $imageNewAnalysis = 'codedx/codedx-newanalysis:v1.26.0',
62+
[string] $imageSendResults = 'codedx/codedx-results:v1.26.0',
63+
[string] $imageSendErrorResults = 'codedx/codedx-error-results:v1.26.0',
64+
[string] $imageToolService = 'codedx/codedx-tool-service:v1.26.0',
65+
[string] $imagePreDelete = 'codedx/codedx-cleanup:v1.26.0',
66+
67+
[string] $imageCodeDxTomcatInit = 'codedx/codedx-tomcat:v2023.8.0',
68+
[string] $imageMariaDB = 'codedx/codedx-mariadb:v1.24.0',
6969
[string] $imageMinio = 'bitnami/minio:2021.4.6-debian-10-r11',
7070
[string] $imageWorkflowController = 'codedx/codedx-workflow-controller:v2.17.0',
7171
[string] $imageWorkflowExecutor = 'codedx/codedx-argoexec:v2.17.0',

0 commit comments

Comments
 (0)