Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for GetSubresource (0.2 sec)

  1. plugin/pkg/auth/authorizer/node/node_authorizer.go

    			return r.authorizeReadNamespacedObject(nodeName, secretVertexType, attrs)
    		case configMapResource:
    			return r.authorizeReadNamespacedObject(nodeName, configMapVertexType, attrs)
    		case pvcResource:
    			if attrs.GetSubresource() == "status" {
    				return r.authorizeStatusUpdate(nodeName, pvcVertexType, attrs)
    			}
    			return r.authorizeGet(nodeName, pvcVertexType, attrs)
    		case pvResource:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation_test.go

    		a.GetVerb() == "impersonate" && a.GetResource() == "userextras" && a.GetSubresource() == "scopes" && a.GetName() == "scope-a" && a.GetAPIGroup() == "authentication.k8s.io" {
    		return authorizer.DecisionAllow, "", nil
    	}
    
    	if len(user.GetGroups()) > 1 && user.GetGroups()[1] == "extra-setter-project" && a.GetVerb() == "impersonate" && a.GetResource() == "userextras" && a.GetSubresource() == "project" && a.GetAPIGroup() == "authentication.k8s.io" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 06 17:13:16 UTC 2021
    - 17.2K bytes
    - Viewed (0)
  3. plugin/pkg/admission/gc/gc_admission.go

    	// // if the request is in the whitelist, we skip mutation checks for this resource.
    	if a.isWhiteListed(attributes.GetResource().GroupResource(), attributes.GetSubresource()) {
    		return nil
    	}
    
    	// if we aren't changing owner references, then the edit is always allowed
    	if !isChangingOwnerReference(attributes.GetObject(), attributes.GetOldObject()) {
    		return nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 02:24:38 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  4. plugin/pkg/admission/gc/gc_admission_test.go

    	username := a.GetUser().GetName()
    
    	if username == "non-deleter" {
    		if a.GetVerb() == "delete" {
    			return authorizer.DecisionNoOpinion, "", nil
    		}
    		if a.GetVerb() == "update" && a.GetSubresource() == "finalizers" {
    			return authorizer.DecisionNoOpinion, "", nil
    		}
    		if a.GetAPIGroup() == "*" && a.GetResource() == "*" { // this user does not have full rights
    			return authorizer.DecisionNoOpinion, "", nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. plugin/pkg/admission/serviceaccount/admission.go

    			return admission.NewForbidden(a, err)
    		}
    	}
    
    	return nil
    }
    
    func shouldIgnore(a admission.Attributes) bool {
    	if a.GetResource().GroupResource() != api.Resource("pods") || (a.GetSubresource() != "" && a.GetSubresource() != "ephemeralcontainers") {
    		return true
    	}
    	obj := a.GetObject()
    	if obj == nil {
    		return true
    	}
    	_, ok := obj.(*api.Pod)
    	if !ok {
    		return true
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    	gvk := equivalentKind
    	gvr := equivalentGVR
    	subresource := attr.GetSubresource()
    
    	requestGVK := attr.GetKind()
    	requestGVR := attr.GetResource()
    	requestSubResource := attr.GetSubresource()
    
    	aUserInfo := attr.GetUserInfo()
    	var userInfo authenticationv1.UserInfo
    	if aUserInfo != nil {
    		userInfo = authenticationv1.UserInfo{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. plugin/pkg/admission/noderestriction/admission.go

    	case podResource:
    		switch a.GetSubresource() {
    		case "":
    			return p.admitPod(nodeName, a)
    		case "status":
    			return p.admitPodStatus(nodeName, a)
    		case "eviction":
    			return p.admitPodEviction(nodeName, a)
    		default:
    			return admission.NewForbidden(a, fmt.Errorf("unexpected pod subresource %q, only 'status' and 'eviction' are allowed", a.GetSubresource()))
    		}
    
    	case nodeResource:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/cel/library/authz.go

    	GetNamespace() string
    	// GetResource is the name of the resource being requested.  This is not the kind.  For example: pods
    	GetResource() schema.GroupVersionResource
    	// GetSubresource is the name of the subresource being requested.  This is a different resource, scoped to the parent resource, but it may have a different kind.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  9. pkg/controller/namespace/deletion/namespaced_resources_deleter_test.go

    	actions := mockClient.Actions()
    	if len(actions) != 1 {
    		t.Errorf("Expected 1 mock client action, but got %v", len(actions))
    	}
    	if !actions[0].Matches("create", "namespaces") || actions[0].GetSubresource() != "finalize" {
    		t.Errorf("Expected finalize-namespace action %v", actions[0])
    	}
    	finalizers := actions[0].(core.CreateAction).GetObject().(*v1.Namespace).Spec.Finalizers
    	if len(finalizers) != 1 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  10. pkg/controller/servicecidrs/servicecidrs_controller_test.go

    			t.Errorf("Expected action %d resource to be %s, got %s", i, resource, action.GetResource().Resource)
    		}
    		subresource := expected[i][2]
    		if action.GetSubresource() != subresource {
    			t.Errorf("Expected action %d subresource to be %s, got %s", i, subresource, action.GetSubresource())
    		}
    	}
    }
    
    func TestController_canDeleteCIDR(t *testing.T) {
    	tests := []struct {
    		name       string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top