Skip to content

Commit 2514851

Browse files
authored
26.10 version bump
1 parent 39cb7d8 commit 2514851

11 files changed

Lines changed: 13 additions & 13 deletions

File tree

cli/cmd/version_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const (
2828
testVersionValue = "1.0.0"
2929
testGoVersion = "go1.19"
3030
testAPIVersion = "v1"
31-
testLongVersion = "26.06.0-custom+20250101"
31+
testLongVersion = "26.10.0-custom+20250101"
3232
)
3333

3434
func withVersionTestMode(clientOnlyVal bool, operatingMode, outputFormat string, fn func()) {

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ const (
149149
OrchestratorName = "trident"
150150
OrchestratorClientName = OrchestratorName + "ctl"
151151
OrchestratorAPIVersion = "1"
152-
DefaultOrchestratorVersion = "26.06.0"
152+
DefaultOrchestratorVersion = "26.10.0"
153153
PersistentStoreBootstrapAttempts = 30
154154
PersistentStoreBootstrapTimeout = PersistentStoreBootstrapAttempts * time.Second
155155
PersistentStoreTimeout = 10 * time.Second

deploy/bundle.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,7 @@ spec:
505505
fieldPath: metadata.name
506506
- name: OPERATOR_NAME
507507
value: trident-operator
508-
image: docker.io/netapp/trident-operator:26.06.0
508+
image: docker.io/netapp/trident-operator:26.10.0
509509
imagePullPolicy: IfNotPresent
510510
name: trident-operator
511511
resources:

deploy/crds/tridentorchestrator_cr_customimage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ metadata:
55
spec:
66
debug: true
77
namespace: trident
8-
tridentImage: localhost:5000/netapp/trident:26.06
8+
tridentImage: localhost:5000/netapp/trident:26.10

deploy/crds/tridentorchestrator_cr_imagepullsecrets.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ metadata:
55
spec:
66
debug: true
77
namespace: trident
8-
tridentImage: netapp/trident:26.06.0
8+
tridentImage: netapp/trident:26.10.0
99
imagePullSecrets:
1010
- thisisasecret

deploy/operator.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spec:
2222
serviceAccountName: trident-operator
2323
containers:
2424
- name: trident-operator
25-
image: docker.io/netapp/trident-operator:26.06.0
25+
image: docker.io/netapp/trident-operator:26.10.0
2626
command:
2727
- "/trident-operator"
2828
- "--debug"

hack/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
26.06.0
1+
26.10.0

helm/trident-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: trident-operator
3-
version: 100.2606.0 # Some services require a semver here: "100.<CalVer>"
3+
version: 100.2610.0 # Some services require a semver here: "100.<CalVer>"
44
kubeVersion: ">= 1.24.0-0"
55
description: "A Helm chart for deploying NetApp's Trident CSI storage provisioner using the Trident Operator."
66
type: application
@@ -11,4 +11,4 @@ icon: "https://raw.githubusercontent.com/NetApp/trident/master/logo/trident.png"
1111
# This is the version number of the application being deployed. This version number should be
1212
# incremented each time you make changes to the application. Versions are not expected to
1313
# follow Semantic Versioning. They should reflect the version the application is using.
14-
appVersion: 26.06.0
14+
appVersion: 26.10.0

operator/controllers/orchestrator/installer/installer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ func createTestLabels() map[string]string {
7575
labels := make(map[string]string)
7676
labels[appLabelKey] = appLabelValue
7777
labels[K8sVersionLabelKey] = "v1.28.8"
78-
labels[TridentVersionLabelKey] = "v26.06.0"
78+
labels[TridentVersionLabelKey] = "v26.10.0"
7979

8080
return labels
8181
}

storage_drivers/ontap/api/client_app_transport.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
const ClientAppHeader = "X-Dot-Client-App"
1515

1616
// ClientAppHeaderValue returns the value to send in the X-Dot-Client-App header
17-
// for every REST/ZAPI request Trident issues to ONTAP, e.g. "Trident/26.06.0".
17+
// for every REST/ZAPI request Trident issues to ONTAP, e.g. "Trident/26.10.0".
1818
func ClientAppHeaderValue() string {
1919
return "Trident/" + tridentconfig.OrchestratorVersion.ShortString()
2020
}

0 commit comments

Comments
 (0)