Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 16 of 16 for SerializeImagePulls (0.41 sec)

  1. pkg/kubelet/apis/config/types.go

    	KubeAPIQPS int32
    	// kubeAPIBurst is the burst to allow while talking with kubernetes
    	// apiserver
    	KubeAPIBurst int32
    	// serializeImagePulls when enabled, tells the Kubelet to pull images one at a time.
    	SerializeImagePulls bool
    	// MaxParallelImagePulls sets the maximum number of image pulls in parallel.
    	MaxParallelImagePulls *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)
  2. cmd/kubelet/app/options/options.go

    	fs.BoolVar(&c.SerializeImagePulls, "serialize-image-pulls", c.SerializeImagePulls, "Pull images one at a time. We recommend *not* changing the default value on nodes that run docker daemon with version < 1.9 or an Aufs storage backend. Issue #10959 has more details.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	podStateProvider podStateProvider,
    	osInterface kubecontainer.OSInterface,
    	runtimeHelper kubecontainer.RuntimeHelper,
    	insecureContainerLifecycleHTTPClient types.HTTPDoer,
    	imageBackOff *flowcontrol.Backoff,
    	serializeImagePulls bool,
    	maxParallelImagePulls *int32,
    	imagePullQPS float32,
    	imagePullBurst int,
    	imageCredentialProviderConfigFile string,
    	imageCredentialProviderBinDir string,
    	cpuCFSQuota bool,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    		kubelet.startupManager,
    		kubelet.rootDirectory,
    		kubelet.podLogsDirectory,
    		kubelet.machineInfo,
    		kubelet.podWorkers,
    		kubelet.os,
    		kubelet,
    		nil,
    		kubelet.backOff,
    		kubeCfg.SerializeImagePulls,
    		kubeCfg.MaxParallelImagePulls,
    		float32(kubeCfg.RegistryPullQPS),
    		int(kubeCfg.RegistryBurst),
    		"",
    		"",
    		kubeCfg.CPUCFSQuota,
    		kubeCfg.CPUCFSQuotaPeriod,
    		runtimeSvc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    		klet.startupManager,
    		rootDirectory,
    		podLogsDirectory,
    		machineInfo,
    		klet.podWorkers,
    		kubeDeps.OSInterface,
    		klet,
    		insecureContainerLifecycleHTTPClient,
    		imageBackOff,
    		kubeCfg.SerializeImagePulls,
    		kubeCfg.MaxParallelImagePulls,
    		float32(kubeCfg.RegistryPullQPS),
    		int(kubeCfg.RegistryBurst),
    		imageCredentialProviderConfigFile,
    		imageCredentialProviderBinDir,
    		kubeCfg.CPUCFSQuota,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"integer"},
    							Format:      "int32",
    						},
    					},
    					"serializeImagePulls": {
    						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