From 75bc3df52e04cce68cea84da5b81ebb33952e6f3 Mon Sep 17 00:00:00 2001 From: Mathieu Bouchard <83231959+bouchardmathieu-qc@users.noreply.github.com> Date: Fri, 31 May 2024 15:26:55 -0400 Subject: [PATCH] Update role.yaml to allow queries on ingressclasses The updated jaeger-operator is querying the cluster to know informations about ingressclasses. But the role created by the jaeger-operator helm chart doesn't allow get or list on ingressclasses. This change addresses that. Fixes #549 Signed-off-by: Mathieu Bouchard <83231959+bouchardmathieu-qc@users.noreply.github.com> --- charts/jaeger-operator/templates/role.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/charts/jaeger-operator/templates/role.yaml b/charts/jaeger-operator/templates/role.yaml index ccc308d9..c10948f7 100644 --- a/charts/jaeger-operator/templates/role.yaml +++ b/charts/jaeger-operator/templates/role.yaml @@ -233,6 +233,13 @@ rules: - patch - update - watch +- apiGroups: + - networking.k8s.io + resources: + - ingressclasses + verbs: + - get + - list - apiGroups: - rbac.authorization.k8s.io resources: