Skip to content

Commit 2747cde

Browse files
committedMar 7, 2025
fix: Fix an error after a Node restart
1 parent c1f49eb commit 2747cde

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed
 

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ All notable changes to this project will be documented in this file.
1717
### Fixed
1818

1919
- 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]).
2022

2123
[#267]: https://github.com/stackabletech/listener-operator/pull/267
2224
[#268]: https://github.com/stackabletech/listener-operator/pull/268
2325
[#279]: https://github.com/stackabletech/listener-operator/pull/279
2426
[#282]: https://github.com/stackabletech/listener-operator/pull/282
2527
[#283]: https://github.com/stackabletech/listener-operator/pull/283
28+
[#284]: https://github.com/stackabletech/listener-operator/pull/284
2629

2730
## [24.11.1] - 2025-01-10
2831

‎rust/operator-binary/src/csi_server/node.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -591,12 +591,18 @@ mod pod_dir {
591591
}
592592
default_addr_dir.get_or_insert(addr_dir);
593593
}
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;
594600
tokio::fs::symlink(
595601
default_addr_dir
596602
.context(NoDefaultAddressSnafu)?
597603
.strip_prefix(target_path)
598604
.context(DefaultAddrIsOutsideRootSnafu)?,
599-
target_path.join("default-address"),
605+
&default_addr_link,
600606
)
601607
.await?;
602608
Ok(())

0 commit comments

Comments
 (0)