File tree Expand file tree Collapse file tree 10 files changed +1047
-34
lines changed
controllers/orchestrator/installer Expand file tree Collapse file tree 10 files changed +1047
-34
lines changed Original file line number Diff line number Diff line change 22
33[ Releases] ( https://github.com/NetApp/trident/releases )
44
5- ## Changes since v25.06.0
5+ ## Changes since v25.06.1
66
77### Trident
88
99** Fixes:**
1010
11+ - ** Kubernetes:** Fixed critical issue where incorrect iSCSI devices were discovered when detaching volumes from Kubernetes nodes.
12+
13+ ## v25.06.1
14+
15+ ### Trident
16+
17+ ** IMPORTANT:** For customers using SolidFire, please do not upgrade to 25.06.1 due to a known issue when unpublishing
18+ volumes. 25.06.2 will be released soon to address this issue.
19+
20+ ** Fixes:**
21+
1122- ** Kubernetes:** Fixed an issue where NQNs were not checked before they are unmapped from Subsystems.
1223- ** Kubernetes:** Fixed an issue where multiple attempts to close a LUKS device resulted in failures to detach volumes.
1324- ** Kubernetes:** Fixed iSCSI volume unstage when the device path has changed since its creation.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ const (
3939 OrchestratorName = "trident"
4040 OrchestratorClientName = OrchestratorName + "ctl"
4141 OrchestratorAPIVersion = "1"
42- DefaultOrchestratorVersion = "25.06.1 "
42+ DefaultOrchestratorVersion = "25.06.2 "
4343 PersistentStoreBootstrapAttempts = 30
4444 PersistentStoreBootstrapTimeout = PersistentStoreBootstrapAttempts * time .Second
4545 PersistentStoreTimeout = 10 * time .Second
Original file line number Diff line number Diff 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.1
495+ image : docker.io/netapp/trident-operator:25.06.2
496496 imagePullPolicy : IfNotPresent
497497 name : trident-operator
498498 resources :
Original file line number Diff line number Diff line change @@ -5,6 +5,6 @@ metadata:
55spec :
66 debug : true
77 namespace : trident
8- tridentImage : netapp/trident:25.06.1
8+ tridentImage : netapp/trident:25.06.2
99 imagePullSecrets :
1010 - thisisasecret
Original file line number Diff line number Diff line change 2222 serviceAccountName : trident-operator
2323 containers :
2424 - name : trident-operator
25- image : docker.io/netapp/trident-operator:25.06.1
25+ image : docker.io/netapp/trident-operator:25.06.2
2626 command :
2727 - " /trident-operator"
2828 - " --debug"
Original file line number Diff line number Diff line change 1- 25.06.1
1+ 25.06.2
Original file line number Diff line number Diff line change 11apiVersion : v2
22name : trident-operator
3- version : 100.2506.1 # Some services require a semver here: "100.<CalVer>"
3+ version : 100.2506.2 # Some services require a semver here: "100.<CalVer>"
44kubeVersion : " >= 1.24.0-0"
55description : " A Helm chart for deploying NetApp's Trident CSI storage provisioner using the Trident Operator."
66type : 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.1
14+ appVersion : 25.06.2
Original file line number Diff line number Diff 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.1 " \
18- release="25.06.1 "
17+ version="25.06.2 " \
18+ release="25.06.2 "
1919
2020ARG BIN=trident-operator
2121
Original file line number Diff line number Diff 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.1 "
65+ labels [TridentVersionLabelKey ] = "v25.06.2 "
6666
6767 return labels
6868}
You can’t perform that action at this time.
0 commit comments