Skip to content

Commit 1e4562b

Browse files
authored
25.02.1 Changelog and version bump
1 parent 5d79886 commit 1e4562b

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
[Releases](https://github.com/NetApp/trident/releases)
44

5-
## Changes since v24.10.0
5+
## Changes since v25.02.0
6+
7+
**Fixes:**
8+
- **Kubernetes:** Fixed an issue in the trident-operator where sidecar image names and versions were incorrectly populated when using a non-default image registry (Issue [#983](https://github.com/NetApp/trident/issues/983)).
9+
- **Kubernetes:** Fixed the issue where multipath sessions fail to recover during an ONTAP failover giveback (Issue [#961](https://github.com/NetApp/trident/issues/961)).
10+
11+
## v25.02.0
612

713
### Trident
814

@@ -12,7 +18,6 @@
1218
- **Kubernetes:** Fixed backend config credentials to support all available AWS ARN partitions (Issue [#913](https://github.com/NetApp/trident/issues/913)).
1319
- **Kubernetes:** Added option to disable the auto configurator reconciliation in the Trident operator (Issue [#924](https://github.com/NetApp/trident/issues/924)).
1420
- **Kubernetes:** Added securityContext for csi-resizer container (Issue [#976](https://github.com/NetApp/trident/issues/976)).
15-
- **Kubernetes:** Fixed issue where iSCSI self-healing may unsafely log out of stale iSCSI sessions when a portal is inaccessible (Issue [#961](https://github.com/NetApp/trident/issues/961)).
1621
- Fixed Zonal Flex pools for GCNV driver.
1722

1823
**Enhancements:**

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.02.0"
42+
DefaultOrchestratorVersion = "25.02.1"
4343
PersistentStoreBootstrapAttempts = 30
4444
PersistentStoreBootstrapTimeout = PersistentStoreBootstrapAttempts * time.Second
4545
PersistentStoreTimeout = 10 * time.Second

deploy/bundle_post_1_25.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ spec:
462462
fieldPath: metadata.name
463463
- name: OPERATOR_NAME
464464
value: trident-operator
465-
image: docker.io/netapp/trident-operator:25.02.0
465+
image: docker.io/netapp/trident-operator:25.02.1
466466
imagePullPolicy: IfNotPresent
467467
name: trident-operator
468468
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.02.0
8+
tridentImage: netapp/trident:25.02.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.02.0
25+
image: docker.io/netapp/trident-operator:25.02.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.02.0
1+
25.02.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.2502.0 # Some services require a semver here: "100.<CalVer>"
3+
version: 100.2502.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.02.0
14+
appVersion: 25.02.1

0 commit comments

Comments
 (0)