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: CHANGELOG.md
+35Lines changed: 35 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,40 @@
1
1
# DevWorkspace Operator Changelog
2
2
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
+
3
38
# v0.36.0
4
39
## Bug Fixes & Improvements
5
40
### Remove `kube-rbac-proxy` from the controller Deployment [#1437](https://github.com/devfile/devworkspace-operator/pull/1437)
0 commit comments