From 6bbececcf8047800fcd2fe89572a54aa2657b99b Mon Sep 17 00:00:00 2001 From: Andrew Kerr Date: Mon, 4 Apr 2022 11:07:47 -0400 Subject: [PATCH] Bump version to 22.04.0 --- config/config.go | 2 +- deploy/bundle.yaml | 2 +- deploy/crds/tridentorchestrator_cr_customimage.yaml | 2 +- deploy/crds/tridentorchestrator_cr_imagepullsecrets.yaml | 2 +- deploy/operator.yaml | 2 +- hack/VERSION | 2 +- helm/trident-operator/Chart.yaml | 2 +- operator/controllers/orchestrator/installer/installer_test.go | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/config/config.go b/config/config.go index 18efc8ec5..6f95d8d27 100644 --- a/config/config.go +++ b/config/config.go @@ -37,7 +37,7 @@ const ( OrchestratorName = "trident" OrchestratorClientName = OrchestratorName + "ctl" OrchestratorAPIVersion = "1" - DefaultOrchestratorVersion = "22.01.0" + DefaultOrchestratorVersion = "22.04.0" PersistentStoreBootstrapAttempts = 30 PersistentStoreBootstrapTimeout = PersistentStoreBootstrapAttempts * time.Second PersistentStoreTimeout = 10 * time.Second diff --git a/deploy/bundle.yaml b/deploy/bundle.yaml index 38df03410..8fcd94c5a 100644 --- a/deploy/bundle.yaml +++ b/deploy/bundle.yaml @@ -395,7 +395,7 @@ spec: fieldPath: metadata.name - name: OPERATOR_NAME value: trident-operator - image: netapp/trident-operator:22.01.0 + image: netapp/trident-operator:22.04.0 imagePullPolicy: IfNotPresent name: trident-operator nodeSelector: diff --git a/deploy/crds/tridentorchestrator_cr_customimage.yaml b/deploy/crds/tridentorchestrator_cr_customimage.yaml index b6ec26e09..ac0fc01a1 100644 --- a/deploy/crds/tridentorchestrator_cr_customimage.yaml +++ b/deploy/crds/tridentorchestrator_cr_customimage.yaml @@ -5,4 +5,4 @@ metadata: spec: debug: true namespace: trident - tridentImage: localhost:5000/netapp/trident:22.01 + tridentImage: localhost:5000/netapp/trident:22.04 diff --git a/deploy/crds/tridentorchestrator_cr_imagepullsecrets.yaml b/deploy/crds/tridentorchestrator_cr_imagepullsecrets.yaml index 8212351a5..415622fad 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:22.01.0 + tridentImage: netapp/trident:22.04.0 imagePullSecrets: - thisisasecret diff --git a/deploy/operator.yaml b/deploy/operator.yaml index 182a435e8..e2ed43038 100644 --- a/deploy/operator.yaml +++ b/deploy/operator.yaml @@ -22,7 +22,7 @@ spec: serviceAccountName: trident-operator containers: - name: trident-operator - image: netapp/trident-operator:22.01.0 + image: netapp/trident-operator:22.04.0 command: - "/trident-operator" - "--debug" diff --git a/hack/VERSION b/hack/VERSION index 65fc5ad61..c207f759b 100644 --- a/hack/VERSION +++ b/hack/VERSION @@ -1 +1 @@ -22.01.0 +22.04.0 diff --git a/helm/trident-operator/Chart.yaml b/helm/trident-operator/Chart.yaml index 9895ee848..644fa93b9 100644 --- a/helm/trident-operator/Chart.yaml +++ b/helm/trident-operator/Chart.yaml @@ -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: 22.01.0 +appVersion: 22.04.0 diff --git a/operator/controllers/orchestrator/installer/installer_test.go b/operator/controllers/orchestrator/installer/installer_test.go index 3dff055ec..b527e108b 100644 --- a/operator/controllers/orchestrator/installer/installer_test.go +++ b/operator/controllers/orchestrator/installer/installer_test.go @@ -51,7 +51,7 @@ func createTestLabels() map[string]string { labels := make(map[string]string) labels[appLabelKey] = appLabelValue labels[K8sVersionLabelKey] = "v1.21.8" - labels[TridentVersionLabelKey] = "v22.01.0" + labels[TridentVersionLabelKey] = "v22.04.0" return labels }