File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed
crates/stackable-operator Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ All notable changes to this project will be documented in this file.
6
6
7
7
### Added
8
8
9
- - The default Kubernetes cluster domain name is now fetched from the kubelet API unless explicitly configured ([ #1068 ] )
9
+ - The default Kubernetes cluster domain name is now fetched from the kubelet API unless explicitly configured ([ #1068 ] , [ # 1071 ] )
10
10
This requires operators to have the RBAC permission to ` get ` ` nodes/proxy ` in the apiGroup "", an example RBAC rule could look like:
11
11
12
12
``` yaml
@@ -21,6 +21,16 @@ All notable changes to this project will be documented in this file.
21
21
verbs : [get]
22
22
` ` `
23
23
24
+ In addition, they must be provided the environment variable ` KUBERNETES_NODE_NAME` like this:
25
+
26
+ ` ` ` yaml
27
+ env:
28
+ - name: KUBERNETES_NODE_NAME
29
+ valueFrom:
30
+ fieldRef:
31
+ fieldPath: spec.nodeName
32
+ ` ` `
33
+
24
34
# ## Changed
25
35
26
36
- Update `kube` to `1.1.0` ([#1049]).
@@ -41,6 +51,7 @@ All notable changes to this project will be documented in this file.
41
51
[#1060]: https://github.com/stackabletech/operator-rs/pull/1060
42
52
[#1064]: https://github.com/stackabletech/operator-rs/pull/1064
43
53
[#1068]: https://github.com/stackabletech/operator-rs/pull/1068
54
+ [#1071]: https://github.com/stackabletech/operator-rs/pull/1071
44
55
45
56
# # [0.93.2] - 2025-05-26
46
57
You can’t perform that action at this time.
0 commit comments