Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 90 for csistoragecapacity (0.33 sec)

  1. staging/src/k8s.io/api/storage/v1/register.go

    		&StorageClass{},
    		&StorageClassList{},
    
    		&VolumeAttachment{},
    		&VolumeAttachmentList{},
    
    		&CSINode{},
    		&CSINodeList{},
    
    		&CSIDriver{},
    		&CSIDriverList{},
    
    		&CSIStorageCapacity{},
    		&CSIStorageCapacityList{},
    	)
    
    	metav1.AddToGroupVersion(scheme, SchemeGroupVersion)
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 14 19:05:45 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1/types_swagger_doc_generated.go

    driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information, if set to true.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 07:07:45 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/storage/v1beta1/types_swagger_doc_generated.go

    driver wants pod scheduling to consider the storage capacity that the driver deployment will report by creating CSIStorageCapacity objects with capacity information, if set to true.\n\nThe check can be enabled immediately when deploying a driver. In that case, provisioning new volumes with late binding will pause until the driver deployment has published some suitable CSIStorageCapacity object.\n\nAlternatively, the driver can be deployed with the field unset or false and it can be flipped later when...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:18:43 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  4. pkg/scheduler/internal/queue/events.go

    	CSIStorageCapacityAdd = framework.ClusterEvent{Resource: framework.CSIStorageCapacity, ActionType: framework.Add, Label: "CSIStorageCapacityAdd"}
    	// CSIStorageCapacityUpdate is the event when a CSI storage capacity is updated in the cluster.
    	CSIStorageCapacityUpdate = framework.ClusterEvent{Resource: framework.CSIStorageCapacity, ActionType: framework.Update, Label: "CSIStorageCapacityUpdate"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. pkg/apis/storage/types.go

    // CSIStorageCapacityList is a collection of CSIStorageCapacity objects.
    type CSIStorageCapacityList struct {
    	metav1.TypeMeta
    	// Standard list metadata
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    	// +optional
    	metav1.ListMeta
    
    	// Items is the list of CSIStorageCapacity objects.
    	Items []CSIStorageCapacity
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 13 20:24:57 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  6. pkg/apis/storage/validation/validation.go

    // CSIStorageCapacity object.
    var ValidateStorageCapacityName = apimachineryvalidation.NameIsDNSSubdomain
    
    type CSIStorageCapacityValidateOptions struct {
    	AllowInvalidLabelValueInSelector bool
    }
    
    // ValidateCSIStorageCapacity validates a CSIStorageCapacity.
    func ValidateCSIStorageCapacity(capacity *storage.CSIStorageCapacity, opts CSIStorageCapacityValidateOptions) field.ErrorList {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1/generated.pb.go

    func (m *CSIStorageCapacity) Reset()      { *m = CSIStorageCapacity{} }
    func (*CSIStorageCapacity) ProtoMessage() {}
    func (*CSIStorageCapacity) Descriptor() ([]byte, []int) {
    	return fileDescriptor_662262cc70094b41, []int{7}
    }
    func (m *CSIStorageCapacity) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *CSIStorageCapacity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/storage/v1beta1/generated.pb.go

    func (m *CSIStorageCapacity) Reset()      { *m = CSIStorageCapacity{} }
    func (*CSIStorageCapacity) ProtoMessage() {}
    func (*CSIStorageCapacity) Descriptor() ([]byte, []int) {
    	return fileDescriptor_73e4f72503e71065, []int{7}
    }
    func (m *CSIStorageCapacity) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *CSIStorageCapacity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 133.9K bytes
    - Viewed (0)
  9. pkg/apis/storage/validation/validation_test.go

    	}
    
    	scenarios := map[string]struct {
    		isExpectedFailure bool
    		capacity          *storage.CSIStorageCapacity
    	}{
    		"good-capacity": {
    			capacity: &goodCapacity,
    		},
    		"missing-storage-class-name": {
    			isExpectedFailure: true,
    			capacity: func() *storage.CSIStorageCapacity {
    				capacity := goodCapacity
    				capacity.StorageClassName = ""
    				return &capacity
    			}(),
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/storage/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *CSIStorageCapacity) APILifecycleIntroduced() (major, minor int) {
    	return 1, 24
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top