Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for AllocatedResources (0.2 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    						{
    							Name:               testContainerName,
    							Resources:          &v1.ResourceRequirements{Limits: CPU1AndMem1GAndStorage2G, Requests: CPU1AndMem1GAndStorage2G},
    							AllocatedResources: CPU1AndMem1GAndStorage2GAndCustomResource,
    						},
    					},
    					Resize: "InProgress",
    				},
    			},
    		},
    		{
    			name: "cpu/memory resource in ResourcesAllocated, resize should be null",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/HEAD/apps.v1beta1.StatefulSet.yaml

          volumeName: volumeNameValue
        status:
          accessModes:
          - accessModesValue
          allocatedResourceStatuses:
            allocatedResourceStatusesKey: allocatedResourceStatusesValue
          allocatedResources:
            allocatedResourcesKey: "0"
          capacity:
            capacityKey: "0"
          conditions:
          - lastProbeTime: "2003-01-01T01:01:01Z"
            lastTransitionTime: "2004-01-01T01:01:01Z"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/apps.v1.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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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