Skip to content

Commit

Permalink
Update role.yaml to allow queries on ingressclasses
Browse files Browse the repository at this point in the history
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 jaegertracing#549

Signed-off-by: Mathieu Bouchard <[email protected]>
  • Loading branch information
bouchardmathieu-qc authored May 31, 2024
1 parent f4213e2 commit 75bc3df
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions charts/jaeger-operator/templates/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,13 @@ rules:
- patch
- update
- watch
- apiGroups:
- networking.k8s.io
resources:
- ingressclasses
verbs:
- get
- list
- apiGroups:
- rbac.authorization.k8s.io
resources:
Expand Down

0 comments on commit 75bc3df

Please sign in to comment.