From 9489c73b73f0b8fca151393dc8d22dc39efd71bb Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Thu, 17 Jul 2025 14:04:24 +0200 Subject: [PATCH 1/2] fix: Add RBAC permission to patch events --- deploy/helm/druid-operator/templates/roles.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/deploy/helm/druid-operator/templates/roles.yaml b/deploy/helm/druid-operator/templates/roles.yaml index c4a977ab..6bd32a6d 100644 --- a/deploy/helm/druid-operator/templates/roles.yaml +++ b/deploy/helm/druid-operator/templates/roles.yaml @@ -172,6 +172,7 @@ rules: - events verbs: - create + - patch {{ if .Capabilities.APIVersions.Has "security.openshift.io/v1" }} - apiGroups: - security.openshift.io From 3fb40c58f0b50a81c29027612041203c955235a8 Mon Sep 17 00:00:00 2001 From: Sebastian Bernauer Date: Mon, 21 Jul 2025 10:27:50 +0200 Subject: [PATCH 2/2] changelog --- CHANGELOG.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98588c1b..5a22521d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,8 @@ All notable changes to this project will be documented in this file. - The default Kubernetes cluster domain name is now fetched from the kubelet API unless explicitly configured. - This requires operators to have the RBAC permission to get nodes/proxy in the apiGroup "". The helm-chart takes care of this. - The CLI argument `--kubernetes-node-name` or env variable `KUBERNETES_NODE_NAME` needs to be set. The helm-chart takes care of this. +- The operator helm-chart now grants RBAC `patch` permissions on `events.k8s.io/events`, + so events can be aggregated (e.g. "error happened 10 times over the last 5 minutes") ([#737]). ### Fixed @@ -63,6 +65,7 @@ All notable changes to this project will be documented in this file. [#725]: https://github.com/stackabletech/druid-operator/pull/725 [#731]: https://github.com/stackabletech/druid-operator/pull/731 [#735]: https://github.com/stackabletech/druid-operator/pull/735 +[#737]: https://github.com/stackabletech/druid-operator/pull/737 ## [25.3.0] - 2025-03-21