From b1444e913c0065260a0b3a71027e97cee3335537 Mon Sep 17 00:00:00 2001 From: David Kwon Date: Wed, 16 Jul 2025 09:49:32 -0400 Subject: [PATCH 1/2] Add changelog for 0.35.x Signed-off-by: David Kwon --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..731aa5f13 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,27 @@ +# DevWorkspace Operator Changelog + +# v0.35.1 +## Bug Fixes & Improvements +- Reverted [#1269](https://github.com/devfile/devworkspace-operator/issues/1269) due to [#1453](https://github.com/devfile/devworkspace-operator/issues/1453) + +# v0.35.0 + +## Features +### Make workspace PVC's Access mode configurable [#1019](https://github.com/devfile/devworkspace-operator/issues/1019) +It is now possible to configure the access mode of per-user and per-workspace PVCs from the global `DevWorkspaceOperatorConfig`. For example: +``` +apiVersion: controller.devfile.io/v1alpha1 +kind: DevWorkspaceOperatorConfig +metadata: + name: devworkspace-operator-config + namespace: $OPERATOR_INSTALL_NAMESPACE +config: + workspace: + imagePullPolicy: Always + storageAccessMode: + - ReadWriteMany +``` + +## Bug Fixes & Improvements +- Some tests do not run locally (macOS) [#1387](https://github.com/devfile/devworkspace-operator/issues/1387) +- Common PVC cleanup job can be assigned to incorrect node in multi-node cluster [#1269](https://github.com/devfile/devworkspace-operator/issues/1269) From 1acec32ce9be80d5a6705ae158e1725fffaf7c47 Mon Sep 17 00:00:00 2001 From: David Kwon Date: Wed, 16 Jul 2025 10:00:08 -0400 Subject: [PATCH 2/2] Update Signed-off-by: David Kwon --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 731aa5f13..f44c477fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ ## Features ### Make workspace PVC's Access mode configurable [#1019](https://github.com/devfile/devworkspace-operator/issues/1019) -It is now possible to configure the access mode of per-user and per-workspace PVCs from the global `DevWorkspaceOperatorConfig`. For example: +It is now possible to configure the storage access mode of per-user and per-workspace PVCs from the global `DevWorkspaceOperatorConfig`. For example: ``` apiVersion: controller.devfile.io/v1alpha1 kind: DevWorkspaceOperatorConfig