Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 92 for AllocatedResources (0.22 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// with v1.Status.Resources / runtime.Status.Resources (last known actual).
    	// Proceed only when kubelet has accepted the resize a.k.a v1.Spec.Resources.Requests == v1.Status.AllocatedResources.
    	// Skip if runtime containerID doesn't match pod.Status containerID (container is restarting)
    	apiContainerStatus, exists := podutil.GetContainerStatus(pod.Status.ContainerStatuses, container.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  2. pkg/api/persistentvolumeclaim/util_test.go

    	return &core.PersistentVolumeClaim{}
    }
    
    func withAllocatedResource(q string) *core.PersistentVolumeClaim {
    	return &core.PersistentVolumeClaim{
    		Status: core.PersistentVolumeClaimStatus{
    			AllocatedResources: core.ResourceList{
    				core.ResourceStorage: resource.MustParse(q),
    			},
    		},
    	}
    }
    
    func withResizeStatus(status core.ClaimResourceStatus) *core.PersistentVolumeClaim {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. pkg/apis/apps/v1beta1/zz_generated.defaults.go

    		v1.SetDefaults_ResourceList(&a.Spec.Resources.Limits)
    		v1.SetDefaults_ResourceList(&a.Spec.Resources.Requests)
    		v1.SetDefaults_ResourceList(&a.Status.Capacity)
    		v1.SetDefaults_ResourceList(&a.Status.AllocatedResources)
    	}
    }
    
    func SetObjectDefaults_StatefulSetList(in *v1beta1.StatefulSetList) {
    	for i := range in.Items {
    		a := &in.Items[i]
    		SetObjectDefaults_StatefulSet(a)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 17:31:23 UTC 2021
    - 20.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/testdata/HEAD/apps.v1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 58.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/testdata/v1.29.0/apps.v1.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 04:12:07 UTC 2023
    - 57.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1beta2.StatefulSet.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 58.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. pkg/apis/core/zz_generated.deepcopy.go

    	if in.Started != nil {
    		in, out := &in.Started, &out.Started
    		*out = new(bool)
    		**out = **in
    	}
    	if in.AllocatedResources != nil {
    		in, out := &in.AllocatedResources, &out.AllocatedResources
    		*out = make(ResourceList, len(*in))
    		for key, val := range *in {
    			(*out)[key] = val.DeepCopy()
    		}
    	}
    	if in.Resources != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
Back to top