Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for GetAPIGroup (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/update.go

    			return errors.NewInternalError(authorizerErr)
    		}
    
    		// The user is not authorized to perform this action, so we need to build the error response
    		gr := schema.GroupResource{
    			Group:    attributes.GetAPIGroup(),
    			Resource: attributes.GetResource(),
    		}
    		name := attributes.GetName()
    		err := fmt.Errorf("%v", authorizerReason)
    		return errors.NewForbidden(gr, name, err)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:19:46 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/node/node_authorizer.go

    	}
    
    	// subdivide access to specific resources
    	if attrs.IsResourceRequest() {
    		requestResource := schema.GroupResource{Group: attrs.GetAPIGroup(), Resource: attrs.GetResource()}
    		switch requestResource {
    		case secretResource:
    			return r.authorizeReadNamespacedObject(nodeName, secretVertexType, attrs)
    		case configMapResource:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top