From 3579674df2df72956b34fa2593e526c02beea9d6 Mon Sep 17 00:00:00 2001 From: lowang_bh Date: Tue, 6 Jun 2023 22:36:14 +0800 Subject: [PATCH] fix comment of rbac decision for NoOpinion Signed-off-by: lowang_bh --- .../k8s.io/apiserver/pkg/authorization/authorizer/interfaces.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging/src/k8s.io/apiserver/pkg/authorization/authorizer/interfaces.go b/staging/src/k8s.io/apiserver/pkg/authorization/authorizer/interfaces.go index 2a826981cfd..8261c5b5830 100644 --- a/staging/src/k8s.io/apiserver/pkg/authorization/authorizer/interfaces.go +++ b/staging/src/k8s.io/apiserver/pkg/authorization/authorizer/interfaces.go @@ -153,7 +153,7 @@ const ( DecisionDeny Decision = iota // DecisionAllow means that an authorizer decided to allow the action. DecisionAllow - // DecisionNoOpionion means that an authorizer has no opinion on whether + // DecisionNoOpinion means that an authorizer has no opinion on whether // to allow or deny an action. DecisionNoOpinion )