Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for AllocatedResourceStatuses (0.32 sec)

  1. pkg/apis/core/v1/zz_generated.conversion.go

    	out.AllocatedResources = *(*core.ResourceList)(unsafe.Pointer(&in.AllocatedResources))
    	out.AllocatedResourceStatuses = *(*map[core.ResourceName]core.ClaimResourceStatus)(unsafe.Pointer(&in.AllocatedResourceStatuses))
    	out.CurrentVolumeAttributesClassName = (*string)(unsafe.Pointer(in.CurrentVolumeAttributesClassName))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// +featureGate=RecoverVolumeExpansionFailure
    	// +mapType=granular
    	// +optional
    	AllocatedResourceStatuses map[ResourceName]ClaimResourceStatus `json:"allocatedResourceStatuses,omitempty" protobuf:"bytes,7,rep,name=allocatedResourceStatuses"`
    	// currentVolumeAttributesClassName is the current name of the VolumeAttributesClass the PVC is using.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    	//
    	// This is an alpha field and requires enabling RecoverVolumeExpansionFailure feature.
    	// +featureGate=RecoverVolumeExpansionFailure
    	// +optional
    	AllocatedResources ResourceList
    	// AllocatedResourceStatuses stores status of resource being resized for the given PVC.
    	// Key names follow standard Kubernetes label syntax. Valid values are either:
    	// 	* Un-prefixed keys:
    	//		- storage - the capacity of the volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"allocatedResourceStatuses":        "allocatedResourceStatuses stores status of resource being resized for the given PVC. Key names follow standard Kubernetes label syntax. Valid values are either:\n\t* Un-prefixed keys:\n\t\t- storage - the capacity of the volume.\n\t* Custom resources...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    	}
    	if validationOpts.EnableRecoverFromExpansionFailure {
    		resizeStatusPath := field.NewPath("status", "allocatedResourceStatus")
    		if newPvc.Status.AllocatedResourceStatuses != nil {
    			resizeStatus := newPvc.Status.AllocatedResourceStatuses
    			for k, v := range resizeStatus {
    				if errs := validatePersistentVolumeClaimResourceKey(k.String(), resizeStatusPath); len(errs) > 0 {
    					allErrs = append(allErrs, errs...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // +featureGate=RecoverVolumeExpansionFailure
      // +optional
      map<string, .k8s.io.apimachinery.pkg.api.resource.Quantity> allocatedResources = 5;
    
      // allocatedResourceStatuses stores status of resource being resized for the given PVC.
      // Key names follow standard Kubernetes label syntax. Valid values are either:
      // 	* Un-prefixed keys:
      // 		- storage - the capacity of the volume.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
Back to top