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
+33Lines changed: 33 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,38 @@
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
+
### Provide timeout for postStart events [#1496](https://github.com/devfile/devworkspace-operator/issues/1496)
19
+
A timeout can now be configured for postStart events to prevent workspace pods from being stuck in a terminating state:
20
+
```
21
+
apiVersion: controller.devfile.io/v1alpha1
22
+
kind: DevWorkspaceOperatorConfig
23
+
metadata:
24
+
name: devworkspace-operator-config
25
+
config:
26
+
workspace:
27
+
postStartTimeout: 30
28
+
```
29
+
By default, this timeout is disabled.
30
+
31
+
## Bug Fixes & Improvements
32
+
- Add E2E test to verify that DevWorkspace contents are persisted during restarts [#1467](https://github.com/devfile/devworkspace-operator/issues/1467)
33
+
- make run fails on m4 MacBook [#1494](https://github.com/devfile/devworkspace-operator/issues/1494)
34
+
- Upgrade Go toolchain to 1.24.6 [#1509](https://github.com/devfile/devworkspace-operator/issues/1509)
35
+
3
36
# v0.36.0
4
37
## Bug Fixes & Improvements
5
38
### Remove `kube-rbac-proxy` from the controller Deployment [#1437](https://github.com/devfile/devworkspace-operator/pull/1437)
0 commit comments