Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for SerializeImagePulls (0.62 sec)

  1. pkg/kubelet/apis/config/v1beta1/defaults.go

    		obj.KubeAPIBurst = 100
    	}
    	if obj.SerializeImagePulls == nil {
    		// SerializeImagePulls is default to true when MaxParallelImagePulls
    		// is not set, and false when MaxParallelImagePulls is set.
    		// This is to save users from having to set both configs.
    		if obj.MaxParallelImagePulls == nil || *obj.MaxParallelImagePulls < 2 {
    			obj.SerializeImagePulls = utilpointer.Bool(true)
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/scheme/testdata/KubeletConfiguration/after/v1beta1.yaml

    oomScoreAdj: -999
    podLogsDir: /var/log/pods
    podPidsLimit: -1
    port: 10250
    registerNode: true
    registryBurst: 10
    registryPullQPS: 5
    resolvConf: /etc/resolv.conf
    runtimeRequestTimeout: 2m0s
    seccompDefault: false
    serializeImagePulls: true
    shutdownGracePeriod: 0s
    shutdownGracePeriodCriticalPods: 0s
    streamingConnectionIdleTimeout: 4h0m0s
    syncFrequency: 1m0s
    topologyManagerPolicy: none
    topologyManagerScope: container
    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/roundtrip/default/v1beta1.yaml

    oomScoreAdj: -999
    podLogsDir: /var/log/pods
    podPidsLimit: -1
    port: 10250
    registerNode: true
    registryBurst: 10
    registryPullQPS: 5
    resolvConf: /etc/resolv.conf
    runtimeRequestTimeout: 2m0s
    seccompDefault: false
    serializeImagePulls: true
    shutdownGracePeriod: 0s
    shutdownGracePeriodCriticalPods: 0s
    streamingConnectionIdleTimeout: 4h0m0s
    syncFrequency: 1m0s
    topologyManagerPolicy: none
    topologyManagerScope: container
    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. pkg/kubelet/apis/config/fuzzer/fuzzer.go

    			obj.Port = ports.KubeletPort
    			obj.ReadOnlyPort = ports.KubeletReadOnlyPort
    			obj.RegistryBurst = 10
    			obj.RegistryPullQPS = 5
    			obj.ResolverConfig = kubetypes.ResolvConfDefault
    			obj.SerializeImagePulls = true
    			obj.StreamingConnectionIdleTimeout = metav1.Duration{Duration: 4 * time.Hour}
    			obj.SyncFrequency = metav1.Duration{Duration: 1 * time.Minute}
    			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
    - 5.2K bytes
    - Viewed (0)
  5. pkg/kubemark/hollow_kubelet.go

    	c.HairpinMode = kubeletconfig.HairpinVeth
    	c.MaxOpenFiles = 1024
    	c.RegistryBurst = 10
    	c.RegistryPullQPS = 5.0
    	c.ResolverConfig = kubetypes.ResolvConfDefault
    	c.KubeletCgroups = "/kubelet"
    	c.SerializeImagePulls = true
    	c.SystemCgroups = ""
    	c.ProtectKernelDefaults = false
    	c.RegisterWithTaints = opt.RegisterWithTaints
    	c.RegisterNode = true
    	c.LocalStorageCapacityIsolation = true
    	c.PodLogsDir = podLogsPath
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:10:54 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top