forked from kubewarden/kubewarden-end-to-end-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Apply workaround for jaeger rbac permissions
Apply workaround for the jaeger ClusterRole, that seems to be missing permissions to list ingressclasses. This makes the jaeger operator not reconcile the expected ingress service. See jaegertracing/helm-charts#549 Signed-off-by: Víctor Cuadrado Juan <[email protected]>
- Loading branch information
Showing
2 changed files
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# This is a workaround for the jaeger ClusterRole, that seems to be missing permissions to list ingressclasses. | ||
# This makes the jaeger operator not reconcile the expected ingress service. | ||
# See https://github.com/jaegertracing/helm-charts/issues/549 | ||
rules: | ||
- apiGroups: | ||
- networking.k8s.io | ||
resources: | ||
- ingressclasses | ||
verbs: | ||
- get | ||
- list |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters