Skip to content

Commit

Permalink
version bump to 24.10
Browse files Browse the repository at this point in the history
version bump to 24.10
  • Loading branch information
agagan authored Jul 1, 2024
1 parent 6a5d5fd commit 6a5983f
Show file tree
Hide file tree
Showing 11 changed files with 14 additions and 14 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.06.0"
DefaultOrchestratorVersion = "24.10.0"
PersistentStoreBootstrapAttempts = 30
PersistentStoreBootstrapTimeout = PersistentStoreBootstrapAttempts * time.Second
PersistentStoreTimeout = 10 * time.Second
Expand Down Expand Up @@ -252,10 +252,10 @@ var (
}

// DefaultAutosupportImage default image used by tridentctl and operator for asup sidecar
DefaultAutosupportImage = "docker.io/netapp/trident-autosupport:24.02"
DefaultAutosupportImage = "docker.io/netapp/trident-autosupport:24.06"

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

// TopologyKeyPrefixes contains well-known topology label prefixes
TopologyKeyPrefixes = []string{"topology.kubernetes.io"}
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 @@ -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.10.0
imagePullPolicy: IfNotPresent
name: trident-operator
resources:
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 @@ -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.10.0
imagePullPolicy: IfNotPresent
name: trident-operator
resources:
Expand Down
2 changes: 1 addition & 1 deletion deploy/crds/tridentorchestrator_cr_autosupport.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ spec:
debug: true
namespace: trident
silenceAutosupport: false
autosupportImage: "netapp/trident-autosupport:24.06"
autosupportImage: "netapp/trident-autosupport:24.10"
autosupportProxy: "http://proxy.example.com:8888"
2 changes: 1 addition & 1 deletion deploy/crds/tridentorchestrator_cr_customimage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ metadata:
spec:
debug: true
namespace: trident
tridentImage: localhost:5000/netapp/trident:24.06
tridentImage: localhost:5000/netapp/trident:24.10
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.06.0
tridentImage: netapp/trident:24.10.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.06.0
image: docker.io/netapp/trident-operator:24.10.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.06.0
24.10.0
4 changes: 2 additions & 2 deletions helm/trident-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: trident-operator
version: 100.2406.0 # Some services require a semver here: "100.<CalVer>"
version: 100.2410.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
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.06.0
appVersion: 24.10.0
2 changes: 1 addition & 1 deletion helm/trident-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ tridentSilenceAutosupport: false
tridentAutosupportImage: ""

# tridentAutosupportImageTag allows overriding the tag of the image for Trident's Autosupport container.
tridentAutosupportImageTag: "24.02"
tridentAutosupportImageTag: "24.06"

# tridentAutosupportProxy allows Trident's autosupport container to phone home via an HTTP proxy.
tridentAutosupportProxy: ""
Expand Down
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.28.8"
labels[TridentVersionLabelKey] = "v24.06.0"
labels[TridentVersionLabelKey] = "v24.10.0"

return labels
}
Expand Down

0 comments on commit 6a5983f

Please sign in to comment.