From 640c35fb92845afd18a2ae49936a16acaca3cefd Mon Sep 17 00:00:00 2001 From: pawelkopka Date: Tue, 30 Jul 2024 12:35:14 +0200 Subject: [PATCH] Change kind Role to ClusterRole for tekton-results-readonly In release there isn't Role tekton-results-readonly, but there is ClusterRole --- docs/api/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/README.md b/docs/api/README.md index e606ef644..77c9ec204 100644 --- a/docs/api/README.md +++ b/docs/api/README.md @@ -107,7 +107,7 @@ is used to refine access to the APIs. ```yaml apiVersion: rbac.authorization.k8s.io/v1 - kind: RoleBinding + kind: ClusterRoleBinding metadata: name: tekton-results-user namespace: user-namespace @@ -117,7 +117,7 @@ is used to refine access to the APIs. namespace: user-namespace roleRef: apiGroup: rbac.authorization.k8s.io - kind: Role + kind: ClusterRole name: tekton-results-readonly ```