Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for AllocatedResources (0.3 sec)

  1. common-protos/k8s.io/api/core/v1/generated.proto

      repeated PersistentVolumeClaimCondition conditions = 4;
    
      // allocatedResources is the storage resource within AllocatedResources tracks the capacity allocated to a PVC. It may
      // be larger than the actual capacity when a volume expansion operation is requested.
      // For storage quota, the larger value from allocatedResources and PVC.spec.resources is used.
      // If allocatedResources is not set, PVC.spec.resources alone is used for quota calculation.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types.go

    	// is requested.
    	// For storage quota, the larger value from allocatedResources and PVC.spec.resources is used.
    	// If allocatedResources is not set, PVC.spec.resources alone is used for quota calculation.
    	// If a volume expansion capacity request is lowered, allocatedResources is only
    	// lowered if there are no expansion operations in progress and if the actual volume capacity
    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

    	// is requested.
    	// For storage quota, the larger value from allocatedResources and PVC.spec.resources is used.
    	// If allocatedResources is not set, PVC.spec.resources alone is used for quota calculation.
    	// If a volume expansion capacity request is lowered, allocatedResources is only
    	// lowered if there are no expansion operations in progress and if the actual volume capacity
    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

    used.\n\nCapacity reported here may be larger than the actual capacity when a volume expansion operation is requested. For storage quota, the larger value from allocatedResources and PVC.spec.resources is used. If allocatedResources is not set, PVC.spec.resources alone is used for quota calculation. If a volume expansion capacity request is lowered, allocatedResources is only lowered if there are no expansion operations in progress and if the actual volume capacity is equal or lower than the requested capacity.\n\nA...
    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/v1/zz_generated.conversion.go

    	out.RestartCount = in.RestartCount
    	out.Image = in.Image
    	out.ImageID = in.ImageID
    	out.ContainerID = in.ContainerID
    	out.Started = (*bool)(unsafe.Pointer(in.Started))
    	out.AllocatedResources = *(*core.ResourceList)(unsafe.Pointer(&in.AllocatedResources))
    	out.Resources = (*core.ResourceRequirements)(unsafe.Pointer(in.Resources))
    	out.VolumeMounts = *(*[]core.VolumeMountStatus)(unsafe.Pointer(&in.VolumeMounts))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

      // is requested.
      // For storage quota, the larger value from allocatedResources and PVC.spec.resources is used.
      // If allocatedResources is not set, PVC.spec.resources alone is used for quota calculation.
      // If a volume expansion capacity request is lowered, allocatedResources is only
      // lowered if there are no expansion operations in progress and if the actual volume capacity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. pkg/apis/core/validation/validation.go

    					allErrs = append(allErrs, field.NotSupported(resizeStatusPath, k, sets.List(resizeStatusSet)))
    					continue
    				}
    			}
    		}
    		allocPath := field.NewPath("status", "allocatedResources")
    		for r, qty := range newPvc.Status.AllocatedResources {
    			if errs := validatePersistentVolumeClaimResourceKey(r.String(), allocPath); len(errs) > 0 {
    				allErrs = append(allErrs, errs...)
    				continue
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.24.md

    - NodeRestriction admission: nodes are now allowed to update PersistentVolumeClaim status fields `resizeStatus` and `allocatedResources` when the `RecoverVolumeExpansionFailure` feature is enabled. ([#107686](https://github.com/kubernetes/kubernetes/pull/107686), [@gnufied](https://github.com/gnufied))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.27.md

      - Added `resizePolicy` for containers in a pod to allow users control over how their containers are resized.
      - Added `allocatedResources` field to container status in pod status that describes the node resources allocated to a pod.
      - Added `resources` field to container status that reports actual resources applied to running containers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
Back to top