Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 212 for subresource (0.5 sec)

  1. 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)
  2. staging/src/k8s.io/api/authorization/v1beta1/types.go

    	// +optional
    	Resource string `json:"resource,omitempty" protobuf:"bytes,5,opt,name=resource"`
    	// Subresource is one of the existing resource types.  "" means none.
    	// +optional
    	Subresource string `json:"subresource,omitempty" protobuf:"bytes,6,opt,name=subresource"`
    	// Name is the name of the resource being requested for a "get" or deleted for a "delete". "" (empty) means all.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/certificates/v1/types.go

    	//
    	// An "Approved" condition is added via the /approval subresource,
    	// indicating the request was approved and should be issued by the signer.
    	//
    	// A "Denied" condition is added via the /approval subresource,
    	// indicating the request was denied and should not be issued by the signer.
    	//
    	// A "Failed" condition is added via the /status subresource,
    	// indicating the signer failed to issue the certificate.
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/patch.go

    			namespace,
    			name,
    			scope.Resource,
    			scope.Subresource,
    			admission.Create,
    			patchToCreateOptions(options),
    			dryrun.IsDryRun(options.DryRun),
    			userInfo)
    		staticUpdateAttributes := admission.NewAttributesRecord(
    			nil,
    			nil,
    			scope.Kind,
    			namespace,
    			name,
    			scope.Resource,
    			scope.Subresource,
    			admission.Update,
    			patchToUpdateOptions(options),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  5. plugin/pkg/admission/gc/gc_admission_test.go

    	// corrupt them.  the pod status strategy ensures status updates cannot mutate
    	// ownerRef.
    	whiteList := []whiteListItem{
    		{
    			groupResource: schema.GroupResource{Resource: "pods"},
    			subresource:   "status",
    		},
    	}
    	gcAdmit := &gcPermissionsEnforcement{
    		Handler:   apiserveradmission.NewHandler(apiserveradmission.Create, apiserveradmission.Update),
    		whiteList: whiteList,
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// - `pods/log` matches the log subresource of pods.
    	// - `*` matches all resources and their subresources.
    	// - `pods/*` matches all subresources of pods.
    	// - `*/scale` matches all scale subresources.
    	//
    	// If wildcard is present, the validation rule will ensure resources do not
    	// overlap with each other.
    	//
    	// An empty list implies all resources and subresources in this API groups apply.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/certificates/v1/generated.proto

      //
      // An "Approved" condition is added via the /approval subresource,
      // indicating the request was approved and should be issued by the signer.
      //
      // A "Denied" condition is added via the /approval subresource,
      // indicating the request was denied and should not be issued by the signer.
      //
      // A "Failed" condition is added via the /status subresource,
      // indicating the signer failed to issue the certificate.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/certificates/v1/generated.proto

      //
      // An "Approved" condition is added via the /approval subresource,
      // indicating the request was approved and should be issued by the signer.
      //
      // A "Denied" condition is added via the /approval subresource,
      // indicating the request was denied and should not be issued by the signer.
      //
      // A "Failed" condition is added via the /status subresource,
      // indicating the signer failed to issue the certificate.
      //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/matching/matching_test.go

    			expectMatches:       true,
    			expectMatchResource: gvr("apps", "v1beta1", "deployments"),
    			expectMatchKind:     gvk("apps", "v1beta1", "Deployment"),
    		},
    
    		{
    			name: "specific rules, subresource prefer exact match",
    			criteria: &v1.MatchResources{
    				NamespaceSelector: &metav1.LabelSelector{},
    				ObjectSelector:    &metav1.LabelSelector{},
    				ResourceRules: []v1.NamedRuleWithOperations{{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    				ResourceRequest: true,
    				APIGroup:        "",
    				Resource:        "endpoints",
    				Subresource:     "",
    				Namespace:       "default",
    				Name:            "endpoints1",
    				Verb:            "custom-verb",
    				APIVersion:      "*",
    			}),
    		},
    		{
    			name: "test subresource request resource authorizer allow check",
    			validations: []ExpressionAccessor{
    				&condition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
Back to top