Skip to content

Commit b8e9bca

Browse files
authored
chore!: Removed support for ephemeral CSI volumes (#670)
* chore!: Removed support for ephemeral CSI volumes * changelog
1 parent 0dd8ef7 commit b8e9bca

File tree

2 files changed

+22
-1
lines changed

2 files changed

+22
-1
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,29 @@ All notable changes to this project will be documented in this file.
1111
This means that cluster wide objects are not removed anymore when the operator is uninstalled.
1212
This behaviour is in line with the default behaviour of Helm and OLM.
1313

14+
### Removed
15+
16+
- BREAKING: Removed support for ephemeral CSI volumes ([#481], [#670]).
17+
This means that the following form would no longer be supported:
18+
19+
```yaml
20+
volumes:
21+
- csi: # ...
22+
```
23+
24+
This has been deprecated since 0.4.0 because it doesn't support pod stickiness ([#125]).
25+
26+
Ephemeral PersistentVolumes that use CSI would still be supported (and the recommended syntax):
27+
28+
```yaml
29+
volumes:
30+
- ephemeral:
31+
volumeClaimTemplate: # ...
32+
```
33+
34+
[#481]: https://github.com/stackabletech/secret-operator/issues/481
1435
[#667]: https://github.com/stackabletech/secret-operator/pull/667
36+
[#670]: https://github.com/stackabletech/secret-operator/pull/670
1537
1638
## [25.11.0] - 2025-11-07
1739

deploy/helm/secret-operator/templates/csidriver.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,4 @@ spec:
1010
podInfoOnMount: true
1111
fsGroupPolicy: File
1212
volumeLifecycleModes:
13-
- Ephemeral
1413
- Persistent

0 commit comments

Comments
 (0)