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.
66
77### Added
88
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 ] )
1010 This requires operators to have the RBAC permission to ` get ` ` nodes/proxy ` in the apiGroup "", an example RBAC rule could look like:
1111
1212 ``` yaml
@@ -21,6 +21,16 @@ All notable changes to this project will be documented in this file.
2121 verbs : [get]
2222 ` ` `
2323
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+
2434# ## Changed
2535
2636- Update `kube` to `1.1.0` ([#1049]).
@@ -41,6 +51,7 @@ All notable changes to this project will be documented in this file.
4151[#1060]: https://github.com/stackabletech/operator-rs/pull/1060
4252[#1064]: https://github.com/stackabletech/operator-rs/pull/1064
4353[#1068]: https://github.com/stackabletech/operator-rs/pull/1068
54+ [#1071]: https://github.com/stackabletech/operator-rs/pull/1071
4455
4556# # [0.93.2] - 2025-05-26
4657
You can’t perform that action at this time.
0 commit comments