We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca69256 commit a5120a2Copy full SHA for a5120a2
1 file changed
crates/stackable-operator/CHANGELOG.md
@@ -6,7 +6,18 @@ All notable changes to this project will be documented in this file.
6
7
### Added
8
9
-- The default Kubernetes cluster domain name is now fetched from the kubelet API unless explicitely configured ([#1068]).
+- 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]
21
22
### Changed
23
0 commit comments