Skip to content

Commit f10282c

Browse files
authored
25.06.1 Version Bump
1 parent ca95ee6 commit f10282c

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const (
3939
OrchestratorName = "trident"
4040
OrchestratorClientName = OrchestratorName + "ctl"
4141
OrchestratorAPIVersion = "1"
42-
DefaultOrchestratorVersion = "25.06.0"
42+
DefaultOrchestratorVersion = "25.06.1"
4343
PersistentStoreBootstrapAttempts = 30
4444
PersistentStoreBootstrapTimeout = PersistentStoreBootstrapAttempts * time.Second
4545
PersistentStoreTimeout = 10 * time.Second

deploy/bundle.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ spec:
492492
fieldPath: metadata.name
493493
- name: OPERATOR_NAME
494494
value: trident-operator
495-
image: docker.io/netapp/trident-operator:25.06.0
495+
image: docker.io/netapp/trident-operator:25.06.1
496496
imagePullPolicy: IfNotPresent
497497
name: trident-operator
498498
resources:

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:25.06.0
8+
tridentImage: netapp/trident:25.06.1
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:25.06.0
25+
image: docker.io/netapp/trident-operator:25.06.1
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-
25.06.0
1+
25.06.1

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.2506.0 # Some services require a semver here: "100.<CalVer>"
3+
version: 100.2506.1 # 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: 25.06.0
14+
appVersion: 25.06.1

operator/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ LABEL maintainer="The NetApp Trident Team" \
1414
description="Trident Operator manages the lifecycle of Trident instances in a Kubernetes cluster." \
1515
name="trident-operator" \
1616
vendor="NetApp, Inc." \
17-
version="25.06.0" \
18-
release="25.06.0"
17+
version="25.06.1" \
18+
release="25.06.1"
1919

2020
ARG BIN=trident-operator
2121

operator/controllers/orchestrator/installer/installer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ func createTestLabels() map[string]string {
6262
labels := make(map[string]string)
6363
labels[appLabelKey] = appLabelValue
6464
labels[K8sVersionLabelKey] = "v1.28.8"
65-
labels[TridentVersionLabelKey] = "v25.06.0"
65+
labels[TridentVersionLabelKey] = "v25.06.1"
6666

6767
return labels
6868
}

0 commit comments

Comments
 (0)