Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for VerbMatches (0.13 sec)

  1. plugin/pkg/auth/authorizer/rbac/rbac.go

    		}
    
    		return rbacv1helpers.VerbMatches(rule, requestAttributes.GetVerb()) &&
    			rbacv1helpers.APIGroupMatches(rule, requestAttributes.GetAPIGroup()) &&
    			rbacv1helpers.ResourceMatches(rule, combinedResource, requestAttributes.GetSubresource()) &&
    			rbacv1helpers.ResourceNameMatches(rule, requestAttributes.GetName())
    	}
    
    	return rbacv1helpers.VerbMatches(rule, requestAttributes.GetVerb()) &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 10:13:50 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  2. pkg/auth/authorizer/abac/abac.go

    		return nil, policyLoadError{path, -1, nil, err}
    	}
    	return pl, nil
    }
    
    func matches(p abac.Policy, a authorizer.Attributes) bool {
    	if subjectMatches(p, a.GetUser()) {
    		if verbMatches(p, a) {
    			// Resource and non-resource requests are mutually exclusive, at most one will match a policy
    			if resourceMatches(p, a) {
    				return true
    			}
    			if nonResourceMatches(p, a) {
    				return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 11 03:11:30 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  3. pkg/apis/rbac/v1/evaluation_helpers.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1
    
    import (
    	"fmt"
    	"strings"
    
    	rbacv1 "k8s.io/api/rbac/v1"
    )
    
    func VerbMatches(rule *rbacv1.PolicyRule, requestedVerb string) bool {
    	for _, ruleVerb := range rule.Verbs {
    		if ruleVerb == rbacv1.VerbAll {
    			return true
    		}
    		if ruleVerb == requestedVerb {
    			return true
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 18 15:37:57 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top