From d6ec7b977da6d9305ca446343f98af7686d16aa5 Mon Sep 17 00:00:00 2001 From: reederc42 Date: Fri, 26 Jul 2024 20:17:46 -0700 Subject: [PATCH] Updates version to 24.06.1 --- config/config.go | 2 +- deploy/bundle_post_1_25.yaml | 2 +- deploy/bundle_pre_1_25.yaml | 2 +- deploy/crds/tridentorchestrator_cr_imagepullsecrets.yaml | 2 +- deploy/operator.yaml | 2 +- hack/VERSION | 2 +- helm/trident-operator/Chart.yaml | 4 ++-- operator/controllers/orchestrator/installer/installer_test.go | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/config/config.go b/config/config.go index 1ca3bbff2..561478b35 100644 --- a/config/config.go +++ b/config/config.go @@ -39,7 +39,7 @@ const ( OrchestratorName = "trident" OrchestratorClientName = OrchestratorName + "ctl" OrchestratorAPIVersion = "1" - DefaultOrchestratorVersion = "24.06.0" + DefaultOrchestratorVersion = "24.06.1" PersistentStoreBootstrapAttempts = 30 PersistentStoreBootstrapTimeout = PersistentStoreBootstrapAttempts * time.Second PersistentStoreTimeout = 10 * time.Second diff --git a/deploy/bundle_post_1_25.yaml b/deploy/bundle_post_1_25.yaml index f43144c7f..b05ef694f 100644 --- a/deploy/bundle_post_1_25.yaml +++ b/deploy/bundle_post_1_25.yaml @@ -462,7 +462,7 @@ spec: fieldPath: metadata.name - name: OPERATOR_NAME value: trident-operator - image: docker.io/netapp/trident-operator:24.06.0 + image: docker.io/netapp/trident-operator:24.06.1 imagePullPolicy: IfNotPresent name: trident-operator resources: diff --git a/deploy/bundle_pre_1_25.yaml b/deploy/bundle_pre_1_25.yaml index 165bd42d1..e806d1dd2 100644 --- a/deploy/bundle_pre_1_25.yaml +++ b/deploy/bundle_pre_1_25.yaml @@ -465,7 +465,7 @@ spec: fieldPath: metadata.name - name: OPERATOR_NAME value: trident-operator - image: docker.io/netapp/trident-operator:24.06.0 + image: docker.io/netapp/trident-operator:24.06.1 imagePullPolicy: IfNotPresent name: trident-operator resources: diff --git a/deploy/crds/tridentorchestrator_cr_imagepullsecrets.yaml b/deploy/crds/tridentorchestrator_cr_imagepullsecrets.yaml index 439ec8059..9942f82db 100644 --- a/deploy/crds/tridentorchestrator_cr_imagepullsecrets.yaml +++ b/deploy/crds/tridentorchestrator_cr_imagepullsecrets.yaml @@ -5,6 +5,6 @@ metadata: spec: debug: true namespace: trident - tridentImage: netapp/trident:24.06.0 + tridentImage: netapp/trident:24.06.1 imagePullSecrets: - thisisasecret diff --git a/deploy/operator.yaml b/deploy/operator.yaml index d56fe2f96..47f0255d3 100644 --- a/deploy/operator.yaml +++ b/deploy/operator.yaml @@ -22,7 +22,7 @@ spec: serviceAccountName: trident-operator containers: - name: trident-operator - image: docker.io/netapp/trident-operator:24.06.0 + image: docker.io/netapp/trident-operator:24.06.1 command: - "/trident-operator" - "--debug" diff --git a/hack/VERSION b/hack/VERSION index 3e82b963d..dca1b19f2 100644 --- a/hack/VERSION +++ b/hack/VERSION @@ -1 +1 @@ -24.06.0 +24.06.1 diff --git a/helm/trident-operator/Chart.yaml b/helm/trident-operator/Chart.yaml index 75e007852..66f5f7176 100644 --- a/helm/trident-operator/Chart.yaml +++ b/helm/trident-operator/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: trident-operator -version: 100.2406.0 # Some services require a semver here: "100." +version: 100.2406.1 # Some services require a semver here: "100." kubeVersion: ">= 1.24.0-0" description: "A Helm chart for deploying NetApp's Trident CSI storage provisioner using the Trident Operator." type: application @@ -11,4 +11,4 @@ icon: "https://raw.githubusercontent.com/NetApp/trident/master/logo/trident.png" # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 24.06.0 +appVersion: 24.06.1 diff --git a/operator/controllers/orchestrator/installer/installer_test.go b/operator/controllers/orchestrator/installer/installer_test.go index 0d36f452a..8147557d2 100644 --- a/operator/controllers/orchestrator/installer/installer_test.go +++ b/operator/controllers/orchestrator/installer/installer_test.go @@ -55,7 +55,7 @@ func createTestLabels() map[string]string { labels := make(map[string]string) labels[appLabelKey] = appLabelValue labels[K8sVersionLabelKey] = "v1.28.8" - labels[TridentVersionLabelKey] = "v24.06.0" + labels[TridentVersionLabelKey] = "v24.06.1" return labels }