Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for 200Gi (0.12 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go

    				makePV("pv-a-0", waitSC.Name).
    					withPhase(v1.VolumeAvailable).
    					withCapacity(resource.MustParse("200Gi")).
    					withNodeAffinity(map[string][]string{v1.LabelHostname: {"node-a"}}).PersistentVolume,
    				makePV("pv-a-1", waitSC.Name).
    					withPhase(v1.VolumeAvailable).
    					withCapacity(resource.MustParse("200Gi")).
    					withNodeAffinity(map[string][]string{v1.LabelHostname: {"node-a"}}).PersistentVolume,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 32K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/helpers_linux_test.go

    	tunedQuotaPeriod := uint64(5 * time.Millisecond / time.Microsecond)     // in microseconds
    
    	minShares := uint64(MinShares)
    	burstableShares := MilliCPUToShares(100)
    	memoryQuantity := resource.MustParse("200Mi")
    	burstableMemory := memoryQuantity.Value()
    	burstablePartialShares := MilliCPUToShares(200)
    	burstableQuota := MilliCPUToQuota(200, int64(defaultQuotaPeriod))
    	guaranteedShares := MilliCPUToShares(100)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. pkg/quota/v1/evaluator/core/pods_test.go

    					},
    				},
    			},
    			usageFgEnabled: corev1.ResourceList{
    				corev1.ResourceRequestsMemory: resource.MustParse("200Mi"),
    				corev1.ResourceLimitsMemory:   resource.MustParse("400Mi"),
    				corev1.ResourcePods:           resource.MustParse("1"),
    				corev1.ResourceMemory:         resource.MustParse("200Mi"),
    				generic.ObjectCountQuotaResourceNameFor(schema.GroupResource{Resource: "pods"}): resource.MustParse("1"),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. pkg/api/persistentvolumeclaim/util_test.go

    			expected: nil,
    		},
    		{
    			name: "200Mi requests no warning",
    			template: &core.PersistentVolumeClaim{
    				Spec: core.PersistentVolumeClaimSpec{
    					Resources: core.VolumeResourceRequirements{
    						Requests: core.ResourceList{
    							core.ResourceStorage: resource.MustParse("200Mi"),
    						},
    						Limits: core.ResourceList{
    							core.ResourceStorage: resource.MustParse("200Mi"),
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/node_container_manager_linux_test.go

    			hardThreshold: evictionapi.ThresholdValue{
    				Quantity: &ephemeralStorageEvictionThreshold,
    			},
    			capacity: getEphemeralStorageResourceList("10Gi"),
    			expected: getEphemeralStorageResourceList("200Mi"),
    		},
    		{
    			kubeReserved: getEphemeralStorageResourceList("150Mi"),
    			capacity:     getEphemeralStorageResourceList("10Gi"),
    			hardThreshold: evictionapi.ThresholdValue{
    				Percentage: 0.05,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 12.1K bytes
    - Viewed (0)
  6. pkg/api/pod/warnings_test.go

    							SeccompProfile: &api.SeccompProfile{Type: api.SeccompProfileTypeRuntimeDefault},
    						},
    					}},
    				},
    			},
    			expected: []string{},
    		},
    		{
    			name: "pod with ephemeral volume source 200Mi",
    			template: &api.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{},
    				Spec: api.PodSpec{Volumes: []api.Volume{
    					{Name: "ephemeral-volume", VolumeSource: api.VolumeSource{Ephemeral: &api.EphemeralVolumeSource{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/types_test.go

    				InitContainers: []v1.Container{
    					{
    						Resources: v1.ResourceRequirements{
    							Requests: v1.ResourceList{
    								v1.ResourceCPU:    resource.MustParse("500m"),
    								v1.ResourceMemory: resource.MustParse("200Mi"),
    							},
    						},
    					},
    				},
    				NodeName: nodeName,
    				Overhead: v1.ResourceList{
    					v1.ResourceCPU:    resource.MustParse("500m"),
    					v1.ResourceMemory: resource.MustParse("500"),
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 45.9K bytes
    - Viewed (0)
  8. pkg/kubelet/container/helpers_test.go

    	}
    }
    
    func TestHashContainerWithoutResources(t *testing.T) {
    	cpu100m := resource.MustParse("100m")
    	cpu200m := resource.MustParse("200m")
    	mem100M := resource.MustParse("100Mi")
    	mem200M := resource.MustParse("200Mi")
    	cpuPolicyRestartNotRequired := v1.ContainerResizePolicy{ResourceName: v1.ResourceCPU, RestartPolicy: v1.NotRequired}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 01:55:46 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top