Skip to content

Commit

Permalink
Trident version bump to 24.05
Browse files Browse the repository at this point in the history
Trident version bump to 24.05
  • Loading branch information
agagan authored Feb 14, 2024
1 parent 70a28fc commit 6eaacaf
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const (
OrchestratorName = "trident"
OrchestratorClientName = OrchestratorName + "ctl"
OrchestratorAPIVersion = "1"
DefaultOrchestratorVersion = "24.02.0"
DefaultOrchestratorVersion = "24.05.0"
PersistentStoreBootstrapAttempts = 30
PersistentStoreBootstrapTimeout = PersistentStoreBootstrapAttempts * time.Second
PersistentStoreTimeout = 10 * time.Second
Expand Down Expand Up @@ -159,7 +159,7 @@ const (
Darwin = "darwin"

// Minimum and maximum supported Kubernetes versions
KubernetesVersionMin = "v1.23"
KubernetesVersionMin = "v1.24"
KubernetesVersionMax = "v1.29"

// KubernetesCSISidecarRegistry is where the CSI sidecar images are hosted
Expand Down Expand Up @@ -254,7 +254,7 @@ var (
DefaultAutosupportImage = "docker.io/netapp/trident-autosupport:23.10"

// DefaultACPImage default image used by tridentctl and operator for acp sidecar
DefaultACPImage = "cr.astra.netapp.io/astra/trident-acp:24.02.0"
DefaultACPImage = "cr.astra.netapp.io/astra/trident-acp:24.05.0"
)

func IsValidProtocol(p Protocol) bool {
Expand Down
2 changes: 1 addition & 1 deletion deploy/bundle_post_1_25.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ spec:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: trident-operator
image: docker.io/netapp/trident-operator:24.02.0
image: docker.io/netapp/trident-operator:24.05.0
imagePullPolicy: IfNotPresent
name: trident-operator
securityContext:
Expand Down
2 changes: 1 addition & 1 deletion deploy/bundle_pre_1_25.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ spec:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: trident-operator
image: docker.io/netapp/trident-operator:24.02.0
image: docker.io/netapp/trident-operator:24.05.0
imagePullPolicy: IfNotPresent
name: trident-operator
securityContext:
Expand Down
2 changes: 1 addition & 1 deletion deploy/crds/tridentorchestrator_cr_imagepullsecrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ metadata:
spec:
debug: true
namespace: trident
tridentImage: netapp/trident:24.02.0
tridentImage: netapp/trident:24.05.0
imagePullSecrets:
- thisisasecret
2 changes: 1 addition & 1 deletion deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
serviceAccountName: trident-operator
containers:
- name: trident-operator
image: docker.io/netapp/trident-operator:24.02.0
image: docker.io/netapp/trident-operator:24.05.0
command:
- "/trident-operator"
- "--debug"
Expand Down
2 changes: 1 addition & 1 deletion hack/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
24.02.0
24.05.0
6 changes: 3 additions & 3 deletions helm/trident-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: trident-operator
version: 100.2402.0 # Some services require a semver here: "100.<CalVer>"
kubeVersion: ">= 1.21.0-0"
version: 100.2405.0 # Some services require a semver here: "100.<CalVer>"
kubeVersion: ">= 1.24.0-0"
description: "A Helm chart for deploying NetApp's Trident CSI storage provisioner using the Trident Operator."
type: application
keywords: ["NetApp", "Trident", "operator", "CSI"]
Expand All @@ -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.02.0
appVersion: 24.05.0
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func createTestLabels() map[string]string {
labels := make(map[string]string)
labels[appLabelKey] = appLabelValue
labels[K8sVersionLabelKey] = "v1.21.8"
labels[TridentVersionLabelKey] = "v24.02.0"
labels[TridentVersionLabelKey] = "v24.05.0"

return labels
}
Expand Down

0 comments on commit 6eaacaf

Please sign in to comment.