You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: modules/ROOT/partials/release-notes/release-26.3.adoc
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -256,6 +256,25 @@ Fixed in https://github.com/stackabletech/commons-operator/pull/387[commons-oper
256
256
*Breaking:* Users of the `EXPERIMENTAL_FILE_HEADER` and `EXPERIMENTAL_FILE_FOOTER` fields who rely on `AUTH_OID` from the `flask_appbuilder.const` import must switch to `AUTH_OAUTH`.
257
257
Removed in https://github.com/stackabletech/airflow-operator/pull/737[airflow-operator#737].
258
258
259
+
===== Stackable secret-operator
260
+
261
+
*Breaking:* Removed support for ephemeral CSI volumes.
262
+
This has been deprecated since secret-operator 0.4.0 because it doesn't support Pod stickiness.
263
+
Ephemeral PersistentVolumes that use CSI are still supported and are the recommended way forward.
264
+
265
+
[source,yaml]
266
+
----
267
+
# Replace this
268
+
volumes:
269
+
- csi: # ...
270
+
271
+
# with the new recommended syntax
272
+
volumes:
273
+
- ephemeral:
274
+
volumeClaimTemplate: # ...
275
+
----
276
+
277
+
Removed in https://github.com/stackabletech/secret-operator/issues/481[secret-operator#481].
0 commit comments