Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for ResourceClaimStatus (0.21 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/structuredparameters_test.go

    					Status: resourceapi.ResourceClaimStatus{
    						DriverName: "driver-a",
    						Allocation: &resourceapi.AllocationResult{
    							ResourceHandles: []resourceapi.ResourceHandle{{
    								// Claims not allocated via structured parameters can be ignored.
    							}},
    						},
    					},
    				},
    				&resourceapi.ResourceClaim{
    					Status: resourceapi.ResourceClaimStatus{
    						DriverName: "driver-a",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 09:27:01 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/resource/v1alpha2/generated.proto

      // resource. "WaitForFirstConsumer" is the default.
      // +optional
      optional string allocationMode = 3;
    }
    
    // ResourceClaimStatus tracks whether the resource has been allocated and what
    // the resulting attributes are.
    message ResourceClaimStatus {
      // DriverName is a copy of the driver name from the ResourceClass at
      // the time when allocation started.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*v1alpha2.ResourceClaimStatus)(nil), (*resource.ResourceClaimStatus)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1alpha2_ResourceClaimStatus_To_resource_ResourceClaimStatus(a.(*v1alpha2.ResourceClaimStatus), b.(*resource.ResourceClaimStatus), scope)
    	}); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/dra/manager_test.go

    					Namespace: "test-namespace",
    					UID:       "test-reserved",
    				},
    				Spec: resourcev1alpha2.ResourceClaimSpec{
    					ResourceClassName: "test-class",
    				},
    				Status: resourcev1alpha2.ResourceClaimStatus{
    					DriverName: driverName,
    					Allocation: &resourcev1alpha2.AllocationResult{
    						ResourceHandles: []resourcev1alpha2.ResourceHandle{
    							{Data: "test-data", DriverName: driverName},
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:29 UTC 2024
    - 42K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/resource/v1alpha2/types.go

    	// because those Pods are not known yet.
    	AllocationModeImmediate AllocationMode = "Immediate"
    )
    
    // ResourceClaimStatus tracks whether the resource has been allocated and what
    // the resulting attributes are.
    type ResourceClaimStatus struct {
    	// DriverName is a copy of the driver name from the ResourceClass at
    	// the time when allocation started.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 27 10:22:35 UTC 2024
    - 30K bytes
    - Viewed (0)
  6. pkg/apis/resource/types.go

    	// because those Pods are not known yet.
    	AllocationModeImmediate AllocationMode = "Immediate"
    )
    
    // ResourceClaimStatus tracks whether the resource has been allocated and what
    // the resulting attributes are.
    type ResourceClaimStatus struct {
    	// DriverName is a copy of the driver name from the ResourceClass at
    	// the time when allocation started.
    	// +optional
    	DriverName string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/resource/v1alpha2/generated.proto

      // resource. "WaitForFirstConsumer" is the default.
      // +optional
      optional string allocationMode = 3;
    }
    
    // ResourceClaimStatus tracks whether the resource has been allocated and what
    // the resulting attributes are.
    message ResourceClaimStatus {
      // DriverName is a copy of the driver name from the ResourceClass at
      // the time when allocation started.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 22:07:50 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/resource/v1alpha2/types_swagger_doc_generated.go

    	"data":           "Data contains the opaque data associated with this ResourceHandle. It is set by the controller component of the resource driver whose name matches the DriverName set in the ResourceClaimStatus this ResourceHandle is embedded in. It is set at allocation time and is intended for processing by the kubelet plugin...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/resource/v1alpha2/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceClaimStatus.
    func (in *ResourceClaimStatus) DeepCopy() *ResourceClaimStatus {
    	if in == nil {
    		return nil
    	}
    	out := new(ResourceClaimStatus)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. pkg/apis/resource/zz_generated.deepcopy.go

    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ResourceClaimStatus.
    func (in *ResourceClaimStatus) DeepCopy() *ResourceClaimStatus {
    	if in == nil {
    		return nil
    	}
    	out := new(ResourceClaimStatus)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 33.8K bytes
    - Viewed (0)
Back to top