Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 5Mi (0.05 sec)

  1. cluster/addons/dns/nodelocaldns/nodelocaldns.yaml

            operator: "Exists"
          containers:
          - name: node-cache
            image: registry.k8s.io/dns/k8s-dns-node-cache:1.23.1
            resources:
              requests:
                cpu: 25m
                memory: 5Mi
            args: [ "-localip", "__PILLAR__LOCAL__DNS__,__PILLAR__DNS__SERVER__", "-conf", "/etc/Corefile", "-upstreamsvc", "kube-dns-upstream" ]
            securityContext:
              capabilities:
                add:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 03:19:02 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. plugin/pkg/admission/limitranger/admission_test.go

    					Max:            getComputeResourceList("100m", "2Gi"),
    					Min:            getComputeResourceList("25m", "1Mi"),
    					Default:        getComputeResourceList("75m", "10Mi"),
    					DefaultRequest: getComputeResourceList("50m", "5Mi"),
    				},
    			},
    		},
    	}
    	externalLimitRange := corev1.LimitRange{}
    	v1.Convert_core_LimitRange_To_v1_LimitRange(&internalLimitRange, &externalLimitRange, nil)
    	return externalLimitRange
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. pkg/apis/core/helper/helpers_test.go

    	}{
    		{
    			name:     core.ResourceName("hugepages-2Mi"),
    			quantity: resource.MustParse("4Mi"),
    			result:   true,
    		},
    		{
    			name:     core.ResourceName("hugepages-2Mi"),
    			quantity: resource.MustParse("5Mi"),
    			result:   false,
    		},
    		{
    			name:     core.ResourceName("hugepages-1Gi"),
    			quantity: resource.MustParse("2Gi"),
    			result:   true,
    		},
    		{
    			name:     core.ResourceName("hugepages-1Gi"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  4. pkg/kubelet/eviction/eviction_manager_test.go

    			imageFsInodes:           "4Mi",
    			containerFsInodesFree:   "3Mi",
    			containerFsInodes:       "4Mi",
    			inducePressureOnWhichFs: "nodefs",
    			softINodePressure:       "1.5Mi",
    			hardINodePressure:       "0.5Mi",
    			thresholdToMonitor: []evictionapi.Threshold{
    				{
    					Signal:   evictionapi.SignalNodeFsInodesFree,
    					Operator: evictionapi.OpLessThan,
    					Value: evictionapi.ThresholdValue{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/types.go

    	// +featureGate=NodeSwap
    	// +optional
    	MemorySwap MemorySwapConfiguration
    	// A quantity defines the maximum size of the container log file before it is rotated. For example: "5Mi" or "256Ki".
    	ContainerLogMaxSize string
    	// Maximum number of container log files that can be present for a container.
    	ContainerLogMaxFiles int32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    		{"12E", decQuantity(12, 18, DecimalSI)},
    
    		// We'll accept fractional binary stuff, too.
    		{"100.035Ki", decQuantity(10243584, -2, BinarySI)},
    		{"0.5Mi", decQuantity(.5*1024*1024, 0, BinarySI)},
    		{"0.05Gi", decQuantity(536870912, -1, BinarySI)},
    		{"0.025Ti", decQuantity(274877906944, -1, BinarySI)},
    
    		// Things written by trolls
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    					},
    					"containerLogMaxSize": {
    						SchemaProps: spec.SchemaProps{
    							Description: "containerLogMaxSize is a quantity defining the maximum size of the container log file before it is rotated. For example: \"5Mi\" or \"256Ki\". Default: \"10Mi\"",
    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"containerLogMaxFiles": {
    						SchemaProps: spec.SchemaProps{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top