diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 000000000..f44c477fd --- /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 storage 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)