Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for memoryThrottlingFactor (0.74 sec)

  1. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/after/v1beta1.yaml

        json:
          infoBufferSize: "0"
        text:
          infoBufferSize: "0"
      verbosity: 0
    makeIPTablesUtilChains: true
    maxOpenFiles: 1000000
    maxPods: 110
    memoryManagerPolicy: None
    memorySwap: {}
    memoryThrottlingFactor: 0.9
    nodeLeaseDurationSeconds: 40
    nodeStatusMaxImages: 50
    nodeStatusReportFrequency: 5m0s
    nodeStatusUpdateFrequency: 10s
    oomScoreAdj: -999
    podLogsDir: /var/log/pods
    podPidsLimit: -1
    port: 10250
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 05:07:06 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/roundtrip/default/v1beta1.yaml

        json:
          infoBufferSize: "0"
        text:
          infoBufferSize: "0"
      verbosity: 0
    makeIPTablesUtilChains: true
    maxOpenFiles: 1000000
    maxPods: 110
    memoryManagerPolicy: None
    memorySwap: {}
    memoryThrottlingFactor: 0.9
    nodeLeaseDurationSeconds: 40
    nodeStatusMaxImages: 50
    nodeStatusReportFrequency: 5m0s
    nodeStatusUpdateFrequency: 10s
    oomScoreAdj: -999
    podLogsDir: /var/log/pods
    podPidsLimit: -1
    port: 10250
    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/v1beta1/defaults.go

    		obj.EnableDebugFlagsHandler = utilpointer.Bool(true)
    	}
    	if obj.SeccompDefault == nil {
    		obj.SeccompDefault = utilpointer.Bool(false)
    	}
    	if obj.MemoryThrottlingFactor == nil {
    		obj.MemoryThrottlingFactor = utilpointer.Float64(DefaultMemoryThrottlingFactor)
    	}
    	if obj.RegisterNode == nil {
    		obj.RegisterNode = utilpointer.Bool(true)
    	}
    	if obj.LocalStorageCapacityIsolation == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    			obj.ContainerRuntimeEndpoint = "unix:///run/containerd/containerd.sock"
    
    			if obj.Logging.Format == "" {
    				obj.Logging.Format = "text"
    			}
    			obj.EnableSystemLogHandler = true
    			obj.MemoryThrottlingFactor = utilpointer.Float64(rand.Float64())
    			obj.LocalStorageCapacityIsolation = true
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/fake_kuberuntime_manager.go

    		internalLifecycle:      cm.NewFakeInternalContainerLifecycle(),
    		logReduction:           logreduction.NewLogReduction(identicalErrorDelay),
    		logManager:             logManager,
    		memoryThrottlingFactor: 0.9,
    		podLogsDirectory:       fakePodLogsDirectory,
    	}
    
    	typedVersion, err := runtimeService.Version(ctx, kubeRuntimeAPIVersion)
    	if err != nil {
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top