Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NodeStatusMaxImages (0.33 sec)

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

          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
    registerNode: true
    registryBurst: 10
    registryPullQPS: 5
    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

          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
    registerNode: true
    registryBurst: 10
    registryPullQPS: 5
    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.CPUCFSQuota = utilpointer.Bool(true)
    	}
    	if obj.CPUCFSQuotaPeriod == nil {
    		obj.CPUCFSQuotaPeriod = &metav1.Duration{Duration: 100 * time.Millisecond}
    	}
    	if obj.NodeStatusMaxImages == nil {
    		obj.NodeStatusMaxImages = utilpointer.Int32(50)
    	}
    	if obj.MaxOpenFiles == 0 {
    		obj.MaxOpenFiles = 1000000
    	}
    	if obj.ContentType == "" {
    		obj.ContentType = "application/vnd.kubernetes.protobuf"
    	}
    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.NodeLeaseDurationSeconds = 40
    			obj.CPUManagerPolicy = "none"
    			obj.CPUManagerPolicyOptions = make(map[string]string)
    			obj.CPUManagerReconcilePeriod = obj.NodeStatusUpdateFrequency
    			obj.NodeStatusMaxImages = 50
    			obj.TopologyManagerPolicy = kubeletconfig.NoneTopologyManagerPolicy
    			obj.TopologyManagerScope = kubeletconfig.ContainerTopologyManagerScope
    			obj.TopologyManagerPolicyOptions = make(map[string]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)
Back to top