File tree 2 files changed +10
-1
lines changed
rust/operator-binary/src/csi_server
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,15 @@ All notable changes to this project will be documented in this file.
17
17
### Fixed
18
18
19
19
- Give RBAC permission to ` delete ` Services, which is needed to set an ownerRef on already existing Services ([ #283 ] ).
20
+ - Fix the error "failed to write content: File exists (os error 17)" after a
21
+ Node restart ([ #284 ] ).
20
22
21
23
[ #267 ] : https://github.com/stackabletech/listener-operator/pull/267
22
24
[ #268 ] : https://github.com/stackabletech/listener-operator/pull/268
23
25
[ #279 ] : https://github.com/stackabletech/listener-operator/pull/279
24
26
[ #282 ] : https://github.com/stackabletech/listener-operator/pull/282
25
27
[ #283 ] : https://github.com/stackabletech/listener-operator/pull/283
28
+ [ #284 ] : https://github.com/stackabletech/listener-operator/pull/284
26
29
27
30
## [ 24.11.1] - 2025-01-10
28
31
Original file line number Diff line number Diff line change @@ -591,12 +591,18 @@ mod pod_dir {
591
591
}
592
592
default_addr_dir. get_or_insert ( addr_dir) ;
593
593
}
594
+
595
+ let default_addr_link = target_path. join ( "default-address" ) ;
596
+ // Remove any existing symlink because `tokio::fs::symlink` fails if it already exists.
597
+ // This happens if the node was restarted. The pod then restarts with the same UID and
598
+ // the pre-populated volume.
599
+ let _ = tokio:: fs:: remove_file ( & default_addr_link) . await ;
594
600
tokio:: fs:: symlink (
595
601
default_addr_dir
596
602
. context ( NoDefaultAddressSnafu ) ?
597
603
. strip_prefix ( target_path)
598
604
. context ( DefaultAddrIsOutsideRootSnafu ) ?,
599
- target_path . join ( "default-address" ) ,
605
+ & default_addr_link ,
600
606
)
601
607
. await ?;
602
608
Ok ( ( ) )
You can’t perform that action at this time.
0 commit comments