Skip to content

Commit d92e750

Browse files
authored
Update changelog for v0.37.0 (#1511)
Signed-off-by: dkwon17 <[email protected]>
1 parent b35e79b commit d92e750

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# DevWorkspace Operator Changelog
22

3+
# v0.37.0
4+
## Features
5+
### Add hostUsers field to DWOC [#1493](https://github.com/devfile/devworkspace-operator/issues/1493)
6+
The DevWorkspace pod's `spec.hostUsers` field can now be set in the DevWorkspaceOperatorConfig:
7+
```
8+
apiVersion: controller.devfile.io/v1alpha1
9+
kind: DevWorkspaceOperatorConfig
10+
metadata:
11+
name: devworkspace-operator-config
12+
config:
13+
workspace:
14+
hostUsers: false
15+
```
16+
Setting the `spec.hostUsers` field to `false` is useful when leveraging user-namespaces for pods.
17+
18+
**Note:** This field is only respected when the UserNamespacesSupport feature is enabled in the cluster. If the feature is disabled, setting hostUsers: false may lead to an endless workspace start loop.
19+
20+
### Provide timeout for postStart events [#1496](https://github.com/devfile/devworkspace-operator/issues/1496)
21+
A timeout can now be configured for postStart events to prevent workspace pods from being stuck in a terminating state:
22+
```
23+
apiVersion: controller.devfile.io/v1alpha1
24+
kind: DevWorkspaceOperatorConfig
25+
metadata:
26+
name: devworkspace-operator-config
27+
config:
28+
workspace:
29+
postStartTimeout: 30
30+
```
31+
By default, this timeout is disabled.
32+
33+
## Bug Fixes & Improvements
34+
- Add E2E test to verify that DevWorkspace contents are persisted during restarts [#1467](https://github.com/devfile/devworkspace-operator/issues/1467)
35+
- make run fails on m4 MacBook [#1494](https://github.com/devfile/devworkspace-operator/issues/1494)
36+
- Upgrade Go toolchain to 1.24.6 [#1509](https://github.com/devfile/devworkspace-operator/issues/1509)
37+
338
# v0.36.0
439
## Bug Fixes & Improvements
540
### Remove `kube-rbac-proxy` from the controller Deployment [#1437](https://github.com/devfile/devworkspace-operator/pull/1437)

0 commit comments

Comments
 (0)