From 1a172d5f76c8ac6aa6d0e00f330e0d1a535aa4f3 Mon Sep 17 00:00:00 2001 From: Lars Kellogg-Stedman Date: Thu, 28 Sep 2023 11:27:19 -0400 Subject: [PATCH] Correct typo in allow-edit-rbac: apiGroups should not include version This corrects a typo introduced in #290, instead of: - apiGroups: - "rbac.authorization.k8s.io/v1" We should have: - apiGroups: - "rbac.authorization.k8s.io" --- .../clusterroles/allow-edit-rbac/clusterrole.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster-scope/base/rbac.authorization.k8s.io/clusterroles/allow-edit-rbac/clusterrole.yaml b/cluster-scope/base/rbac.authorization.k8s.io/clusterroles/allow-edit-rbac/clusterrole.yaml index a13d7a29..ab27ddda 100644 --- a/cluster-scope/base/rbac.authorization.k8s.io/clusterroles/allow-edit-rbac/clusterrole.yaml +++ b/cluster-scope/base/rbac.authorization.k8s.io/clusterroles/allow-edit-rbac/clusterrole.yaml @@ -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