Skip to content

Commit

Permalink
Correct typo in allow-edit-rbac: apiGroups should not include version
Browse files Browse the repository at this point in the history
This corrects a typo introduced in #290, instead of:

    - apiGroups:
        - "rbac.authorization.k8s.io/v1"

We should have:

    - apiGroups:
        - "rbac.authorization.k8s.io"
  • Loading branch information
larsks committed Sep 28, 2023
1 parent 7925faa commit 1a172d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
rbac.authorization.k8s.io/aggregate-to-edit: "true"
rules:
- apiGroups:
- "rbac.authorization.k8s.io/v1"
- "rbac.authorization.k8s.io"
resources:
- roles
- rolebindings
Expand Down

0 comments on commit 1a172d5

Please sign in to comment.