Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for 200Mi (0.06 sec)

  1. pkg/apis/core/v1/helper/qos/qos_test.go

    				newContainer("burstable-unbounded", getResourceList("100m", "100Mi"), getResourceList("", "")),
    			}),
    			expected: v1.PodQOSBurstable,
    		},
    		{
    			pod: newPod("burstable-1", []v1.Container{
    				newContainer("burstable", getResourceList("10m", "100Mi"), getResourceList("100m", "200Mi")),
    			}),
    			expected: v1.PodQOSBurstable,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 14:47:37 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  2. pkg/kubelet/eviction/helpers_test.go

    		newContainer("medium-priority", newResourceList("100m", "100Mi", ""), newResourceList("200m", "200Mi", "")),
    	}, nil)
    	high := newPod("high-priority", 12534, []v1.Container{
    		newContainer("high-priority", newResourceList("200m", "200Mi", ""), newResourceList("200m", "200Mi", "")),
    	}, nil)
    
    	pods := []*v1.Pod{high, medium, low}
    	orderedBy(priority).Sort(pods)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. operator/cmd/mesh/testdata/manifest-generate/input/ztunnel.yaml

      components:
        ztunnel:
          enabled: true
          k8s:
            resources:
              requests:
                cpu: 100m
                memory: 100Mi
              limits:
                cpu: 200m
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 12 03:09:45 UTC 2023
    - 327 bytes
    - Viewed (0)
  6. cluster/addons/fluentd-gcp/scaler-deployment.yaml

            env:
            # Defaults, used if no overrides are found in fluentd-gcp-scaling-policy
            - name: CPU_REQUEST
              value: 10m
            - name: MEMORY_REQUEST
              value: 200Mi
            - name: CPU_LIMIT
              value: "1"
            - name: MEMORY_LIMIT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 07 17:58:57 UTC 2023
    - 972 bytes
    - Viewed (0)
  7. cluster/addons/fluentd-gcp/README.md

    ```
    
    This will display an output similar to the following:
    
    ```
    NAME                  CPU_REQUEST   MEMORY_REQUEST   MEMORY_LIMIT
    fluentd-gcp-v2.0.15   100m          200Mi            300Mi
    ```
    
    In order to change those values, a [ScalingPolicy][scalingPolicy] needs to be
    defined. Currently, only base values are supported (no automatic scaling). The
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 13 20:03:37 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/output/ztunnel.golden.yaml

              protocol: TCP
            readinessProbe:
              httpGet:
                path: /healthz/ready
                port: 15021
            resources:
              limits:
                cpu: 200m
                memory: 200Mi
              requests:
                cpu: 100m
                memory: 100Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                add:
                - NET_ADMIN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 23:49:40 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. prow/config/metrics/metrics.yaml

                scheme: HTTPS
              failureThreshold: 600
              initialDelaySeconds: 0
              periodSeconds: 1
            resources:
              requests:
                cpu: 100m
                memory: 200Mi
            securityContext:
              allowPrivilegeEscalation: false
              capabilities:
                drop:
                - ALL
              readOnlyRootFilesystem: true
              runAsNonRoot: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 20:51:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. 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)
Back to top