Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for NodeStatusMaxImages (0.42 sec)

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

    		"ServerTLSBootstrap",
    		"StaticPodURL",
    		"StaticPodURLHeader[*][*]",
    		"MaxOpenFiles",
    		"MaxPods",
    		"MemoryManagerPolicy",
    		"MemorySwap.SwapBehavior",
    		"NodeLeaseDurationSeconds",
    		"NodeStatusMaxImages",
    		"NodeStatusUpdateFrequency.Duration",
    		"NodeStatusReportFrequency.Duration",
    		"OOMScoreAdj",
    		"PodCIDR",
    		"PodPidsLimit",
    		"PodsPerCore",
    		"Port",
    		"ProtectKernelDefaults",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/types.go

    	CPUCFSQuotaPeriod metav1.Duration
    	// maxOpenFiles is Number of files that can be opened by Kubelet process.
    	MaxOpenFiles int64
    	// nodeStatusMaxImages caps the number of images reported in Node.Status.Images.
    	NodeStatusMaxImages int32
    	// contentType is contentType of requests sent to apiserver.
    	ContentType string
    	// kubeAPIQPS is the QPS to use while talking with kubernetes apiserver
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. cmd/kubelet/app/options/options.go

    	fs.Int32Var(&c.NodeStatusMaxImages, "node-status-max-images", c.NodeStatusMaxImages, "The maximum number of images to report in Node.Status.Images. If -1 is specified, no cap will be applied.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status.go

    		nodestatus.VersionInfo(kl.cadvisor.VersionInfo, kl.containerRuntime.Type, kl.containerRuntime.Version),
    		nodestatus.DaemonEndpoints(kl.daemonEndpoints),
    		nodestatus.Images(kl.nodeStatusMaxImages, kl.imageManager.GetImageList),
    		nodestatus.GoRuntime(),
    		nodestatus.RuntimeHandlers(kl.runtimeState.runtimeHandlers),
    	)
    
    	setters = append(setters,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    		clock:                          clock.RealClock{},
    		enableControllerAttachDetach:   kubeCfg.EnableControllerAttachDetach,
    		makeIPTablesUtilChains:         kubeCfg.MakeIPTablesUtilChains,
    		nodeStatusMaxImages:            nodeStatusMaxImages,
    		tracer:                         tracer,
    		nodeStartupLatencyTracker:      kubeDeps.NodeStartupLatencyTracker,
    	}
    
    	if klet.cloud != nil {
    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. cmd/kubelet/app/server.go

    		kubeServer.MinimumGCAge,
    		kubeServer.MaxPerPodContainerCount,
    		kubeServer.MaxContainerCount,
    		kubeServer.RegisterSchedulable,
    		kubeServer.NodeLabels,
    		kubeServer.NodeStatusMaxImages,
    		kubeServer.KubeletFlags.SeccompDefault || kubeServer.KubeletConfiguration.SeccompDefault)
    	if err != nil {
    		return nil, err
    	}
    
    	k.BirthCry()
    
    	k.StartGarbageCollection()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    							Ref:         ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"),
    						},
    					},
    					"nodeStatusMaxImages": {
    						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