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,18 @@ 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 explicitely configured ([ #1068 ] ).
9+ - The default Kubernetes cluster domain name is now fetched from the kubelet API unless explicitly configured ([ #1068 ] )<br >
10+ This requires operators to have the RBAC permission to ` get ` ` nodes/proxy ` in the apiGroup "", an example RBAC rule could look like:
11+ ``` yaml
12+ ---
13+ apiVersion : rbac.authorization.k8s.io/v1
14+ kind : ClusterRole
15+ metadata :
16+ name : operator-cluster-role
17+ rules :
18+ - apiGroups : [""]
19+ resources : [nodes/proxy]
20+ verbs : [get]
1021
1122# ## Changed
1223
You can’t perform that action at this time.
0 commit comments