Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isAccessReview (0.31 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go

    	if a.GetOperation() == admission.Delete {
    		return nil
    	}
    
    	// always allow access review checks.  Returning status about the namespace would be leaking information
    	if isAccessReview(a) {
    		return nil
    	}
    
    	// we need to wait for our caches to warm
    	if !l.WaitForReady() {
    		return admission.NewForbidden(a, fmt.Errorf("not yet ready to handle request"))
    	}
    
    	var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 8.6K bytes
    - Viewed (0)
Back to top