Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for 10Mi (0.04 sec)

  1. cluster/addons/device-plugins/nvidia-gpu/daemonset.yaml

            command: ["/usr/bin/nvidia-gpu-device-plugin", "-logtostderr"]
            name: nvidia-gpu-device-plugin
            resources:
              requests:
                cpu: 50m
                memory: 10Mi
              limits:
                cpu: 50m
                memory: 10Mi
            securityContext:
              privileged: true
            volumeMounts:
            - name: device-plugin
              mountPath: /device-plugin
            - name: dev
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/roundtrip/default/v1beta1.yaml

      webhook:
        cacheAuthorizedTTL: 5m0s
        cacheUnauthorizedTTL: 30s
    cgroupDriver: cgroupfs
    cgroupsPerQOS: true
    configMapAndSecretChangeDetectionStrategy: Watch
    containerLogMaxFiles: 5
    containerLogMaxSize: 10Mi
    containerLogMaxWorkers: 1
    containerLogMonitorInterval: 10s
    containerRuntimeEndpoint: unix:///run/containerd/containerd.sock
    contentType: application/vnd.kubernetes.protobuf
    cpuCFSQuota: true
    cpuCFSQuotaPeriod: 100ms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/after/v1beta1.yaml

      webhook:
        cacheAuthorizedTTL: 5m0s
        cacheUnauthorizedTTL: 30s
    cgroupDriver: cgroupfs
    cgroupsPerQOS: true
    configMapAndSecretChangeDetectionStrategy: Watch
    containerLogMaxFiles: 5
    containerLogMaxSize: 10Mi
    containerLogMaxWorkers: 1
    containerLogMonitorInterval: 10s
    containerRuntimeEndpoint: unix:///run/containerd/containerd.sock
    contentType: application/vnd.kubernetes.protobuf
    cpuCFSQuota: true
    cpuCFSQuotaPeriod: 100ms
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. cluster/log-dump/logexporter-daemonset.yaml

              name: varlog
              readOnly: true
            - mountPath: /workspace/etc
              name: hostetc
              readOnly: true
            resources:
              requests:
                cpu: 10m
                memory: 10Mi
          nodeSelector:
            {{.NodeSelector}}
          volumes:
          - name: service
            secret:
              secretName: google-service-account
          - name: varlog
            hostPath:
              path: /var/log
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 25 13:45:49 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  5. pkg/kubelet/apis/config/v1beta1/defaults_test.go

    				IPTablesDropBit:                           utilpointer.Int32(DefaultIPTablesDropBit),
    				FailSwapOn:                                utilpointer.Bool(true),
    				ContainerLogMaxSize:                       "10Mi",
    				ContainerLogMaxFiles:                      utilpointer.Int32(5),
    				ContainerLogMaxWorkers:                    utilpointer.Int32(1),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. cluster/addons/dns-horizontal-autoscaler/dns-horizontal-autoscaler.yaml

          containers:
          - name: autoscaler
            image: registry.k8s.io/cpa/cluster-proportional-autoscaler:1.8.4
            resources:
                requests:
                    cpu: "20m"
                    memory: "10Mi"
            command:
              - /cluster-proportional-autoscaler
              - --namespace=kube-system
              - --configmap=kube-dns-autoscaler
              # Should keep target in sync with cluster/addons/dns/kube-dns.yaml.base
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  7. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    			obj.EnforceNodeAllocatable = kubeletconfigv1beta1.DefaultNodeAllocatableEnforcement
    			obj.StaticPodURLHeader = make(map[string][]string)
    			obj.ContainerLogMaxFiles = 5
    			obj.ContainerLogMaxSize = "10Mi"
    			obj.ContainerLogMaxWorkers = 1
    			obj.ContainerLogMonitorInterval = metav1.Duration{Duration: 10 * time.Second}
    			obj.ConfigMapAndSecretChangeDetectionStrategy = "Watch"
    			obj.AllowedUnsafeSysctls = []string{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/v1beta1/defaults.go

    		obj.IPTablesDropBit = utilpointer.Int32(DefaultIPTablesDropBit)
    	}
    	if obj.FailSwapOn == nil {
    		obj.FailSwapOn = utilpointer.Bool(true)
    	}
    	if obj.ContainerLogMaxSize == "" {
    		obj.ContainerLogMaxSize = "10Mi"
    	}
    	if obj.ContainerLogMaxFiles == nil {
    		obj.ContainerLogMaxFiles = utilpointer.Int32(5)
    	}
    	if obj.ContainerLogMaxWorkers == nil {
    		obj.ContainerLogMaxWorkers = utilpointer.Int32(1)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. plugin/pkg/admission/limitranger/admission_test.go

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

    			expectedValue: "100",
    		},
    		{
    			fs: &v1.ResourceFieldSelector{
    				Resource: "limits.memory",
    			},
    			cName:         "foo",
    			pod:           getPod("foo", podResources{memoryRequest: "10Mi", memoryLimit: "100Mi"}),
    			expectedValue: "104857600",
    		},
    		{
    			fs: &v1.ResourceFieldSelector{
    				Resource: "limits.cpu",
    			},
    			cName:         "init-foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:13 UTC 2023
    - 38.3K bytes
    - Viewed (0)
Back to top