Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 231 for resourceclaim (0.27 sec)

  1. cmd/kube-controller-manager/names/controller_names.go

    	EphemeralVolumeController                    = "ephemeral-volume-controller"
    	StorageVersionGarbageCollectorController     = "storageversion-garbage-collector-controller"
    	ResourceClaimController                      = "resourceclaim-controller"
    	LegacyServiceAccountTokenCleanerController   = "legacy-serviceaccount-token-cleaner-controller"
    	ValidatingAdmissionPolicyStatusController    = "validatingadmissionpolicy-status-controller"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/dra/claiminfo_test.go

    	claimName := "test-claim"
    
    	for _, test := range []struct {
    		description    string
    		claim          *resourcev1alpha2.ResourceClaim
    		expectedResult *ClaimInfo
    	}{
    		{
    			description: "successfully created object",
    			claim: &resourcev1alpha2.ResourceClaim{
    				ObjectMeta: metav1.ObjectMeta{
    					UID:       claimUID,
    					Name:      claimName,
    					Namespace: namespace,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. pkg/registry/resource/podschedulingcontext/strategy.go

    type podSchedulingStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Strategy is the default logic that applies when creating and updating
    // ResourceClaim objects via the REST API.
    var Strategy = podSchedulingStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    func (podSchedulingStrategy) NamespaceScoped() bool {
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:39:24 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pkg/scheduler/apis/config/v1/default_plugins.go

    		// This plugin should come before DefaultPreemption because if
    		// there is a problem with a Pod and PostFilter gets called to
    		// resolve the problem, it is better to first deallocate an
    		// idle ResourceClaim than it is to evict some Pod that might
    		// be doing useful work.
    		for i := range config.MultiPoint.Enabled {
    			if config.MultiPoint.Enabled[i].Name == names.DefaultPreemption {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/generated.pb.go

    func (m *ResourceClaim) Reset()      { *m = ResourceClaim{} }
    func (*ResourceClaim) ProtoMessage() {}
    func (*ResourceClaim) Descriptor() ([]byte, []int) {
    	return fileDescriptor_4312f5b44a31ec02, []int{17}
    }
    func (m *ResourceClaim) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *ResourceClaim) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 261.9K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/types.go

    	CSIStorageCapacity      GVK = "storage.k8s.io/CSIStorageCapacity"
    	StorageClass            GVK = "storage.k8s.io/StorageClass"
    	PodSchedulingContext    GVK = "PodSchedulingContext"
    	ResourceClaim           GVK = "ResourceClaim"
    	ResourceClass           GVK = "ResourceClass"
    	ResourceClaimParameters GVK = "ResourceClaimParameters"
    	ResourceClassParameters GVK = "ResourceClassParameters"
    
    	// WildCard is a special GVK to match all resources.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  7. pkg/api/testing/defaulting_test.go

    		{Group: "rbac.authorization.k8s.io", Version: "v1", Kind: "RoleBindingList"}:                               {},
    		{Group: "resource.k8s.io", Version: "v1alpha2", Kind: "ResourceClaim"}:                                     {},
    		{Group: "resource.k8s.io", Version: "v1alpha2", Kind: "ResourceClaimList"}:                                 {},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	//
    	// +featureGate=DynamicResourceAllocation
    	// +optional
    	ResourceClaims []PodResourceClaim
    }
    
    // PodResourceClaim references exactly one ResourceClaim through a ClaimSource.
    // It adds a name to it that uniquely identifies the ResourceClaim inside the Pod.
    // Containers that need access to the ResourceClaim reference it with this name.
    type PodResourceClaim struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      //
      // The template will be used to create a new ResourceClaim, which will
      // be bound to this pod. When this pod is deleted, the ResourceClaim
      // will also be deleted. The name of the ResourceClaim will be <pod
      // name>-<resource name>, where <resource name> is the
      // PodResourceClaim.Name. Pod validation will reject the pod if the
      // concatenated name is not valid for a ResourceClaim (e.g. too long).
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. pkg/scheduler/scheduler_test.go

    					{PluginName: filterWithoutEnqueueExtensions, QueueingHintFn: defaultQueueingHintFn},
    				},
    				{Resource: framework.ResourceClaim, ActionType: framework.All}: {
    					{PluginName: filterWithoutEnqueueExtensions, QueueingHintFn: defaultQueueingHintFn},
    				},
    				{Resource: framework.ResourceClass, ActionType: framework.All}: {
    					{PluginName: filterWithoutEnqueueExtensions, QueueingHintFn: defaultQueueingHintFn},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 42K bytes
    - Viewed (0)
Back to top