Skip to content

Commit a5120a2

Browse files
razvansbernauer
andauthored
Update crates/stackable-operator/CHANGELOG.md
Co-authored-by: Sebastian Bernauer <sebastian.bernauer@stackable.de>
1 parent ca69256 commit a5120a2

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

crates/stackable-operator/CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)