Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for authorizer (1.85 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    			valid: []string{
    				"oldSelf == self",
    			},
    		},
    		{name: "authorizer is not supported for CRD Validation Rules",
    			obj:    []interface{}{},
    			oldObj: []interface{}{},
    			schema: objectTypePtr(map[string]schema.Structural{}),
    			errors: map[string]string{
    				"authorizer.path('/healthz').check('get').allowed()": "undeclared reference to 'authorizer'",
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. cmd/object-handlers.go

    					}
    				}
    				if reader != nil && proxy.Proxy && perr == nil {
    					gr = reader
    				}
    			}
    		}
    		if reader == nil || !proxy.Proxy {
    			// validate if the request indeed was authorized, if it wasn't we need to return "ErrAccessDenied"
    			// instead of any namespace related error.
    			if s3Error := authorizeRequest(ctx, r, policy.GetObjectAction); s3Error != ErrNone {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top