Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for maximumVolumeSize (0.46 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.CSIStorageCapacity.yaml

    apiVersion: storage.k8s.io/v1
    capacity: "0"
    kind: CSIStorageCapacity
    maximumVolumeSize: "0"
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.yaml

    apiVersion: storage.k8s.io/v1alpha1
    capacity: "0"
    kind: CSIStorageCapacity
    maximumVolumeSize: "0"
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1alpha1.CSIStorageCapacity.json

            "operator": "operatorValue",
            "values": [
              "valuesValue"
            ]
          }
        ]
      },
      "storageClassName": "storageClassNameValue",
      "capacity": "0",
      "maximumVolumeSize": "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1.CSIStorageCapacity.json

            "operator": "operatorValue",
            "values": [
              "valuesValue"
            ]
          }
        ]
      },
      "storageClassName": "storageClassNameValue",
      "capacity": "0",
      "maximumVolumeSize": "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.CSIStorageCapacity.json

            "operator": "operatorValue",
            "values": [
              "valuesValue"
            ]
          }
        ]
      },
      "storageClassName": "storageClassNameValue",
      "capacity": "0",
      "maximumVolumeSize": "0"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.30.0/storage.k8s.io.v1beta1.CSIStorageCapacity.yaml

    apiVersion: storage.k8s.io/v1beta1
    capacity: "0"
    kind: CSIStorageCapacity
    maximumVolumeSize: "0"
    metadata:
      annotations:
        annotationsKey: annotationsValue
      creationTimestamp: "2008-01-01T01:01:01Z"
      deletionGracePeriodSeconds: 10
      deletionTimestamp: "2009-01-01T01:01:01Z"
      finalizers:
      - finalizersValue
      generateName: generateNameValue
      generation: 7
      labels:
        labelsKey: labelsValue
      managedFields:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/storage/v1/types.go

    	// GetCapacityRequest. The corresponding value in the Kubernetes
    	// API is ResourceRequirements.Requests in a volume claim.
    	//
    	// +optional
    	MaximumVolumeSize *resource.Quantity `json:"maximumVolumeSize,omitempty" protobuf:"bytes,5,opt,name=maximumVolumeSize"`
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    // +k8s:prerelease-lifecycle-gen:introduced=1.24
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 32K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/volumebinding/binder.go

    }
    
    func capacitySufficient(capacity *storagev1.CSIStorageCapacity, sizeInBytes int64) bool {
    	limit := capacity.Capacity
    	if capacity.MaximumVolumeSize != nil {
    		// Prefer MaximumVolumeSize if available, it is more precise.
    		limit = capacity.MaximumVolumeSize
    	}
    	return limit != nil && limit.Value() >= sizeInBytes
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 14:55:34 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		capacityQuantity := resource.MustParse(capacityStr)
    		c.Capacity = &capacityQuantity
    	}
    	if maximumVolumeSizeStr != "" {
    		maximumVolumeSizeQuantity := resource.MustParse(maximumVolumeSizeStr)
    		c.MaximumVolumeSize = &maximumVolumeSizeQuantity
    	}
    	return c
    }
    
    func makeBinding(pvc *v1.PersistentVolumeClaim, pv *v1.PersistentVolume) *BindingInfo {
    	return &BindingInfo{pvc: pvc.DeepCopy(), pv: pv.DeepCopy()}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  10. pkg/generated/openapi/zz_generated.openapi.go

    				Type:...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top