Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for podPidsLimit (0.46 sec)

  1. pkg/kubelet/cm/container_manager_linux.go

    	if cm.NodeConfig.CgroupsPerQOS {
    		return &podContainerManagerImpl{
    			qosContainersInfo: cm.GetQOSContainersInfo(),
    			subsystems:        cm.subsystems,
    			cgroupManager:     cm.cgroupManager,
    			podPidsLimit:      cm.PodPidsLimit,
    			enforceCPULimits:  cm.EnforceCPULimits,
    			// cpuCFSQuotaPeriod is in microseconds. NodeConfig.CPUCFSQuotaPeriod is time.Duration (measured in nano seconds).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. cmd/kubelet/app/options/options.go

    	fs.Int64Var(&c.PodPidsLimit, "pod-max-pids", c.PodPidsLimit, "Set the maximum number of processes per pod.  If -1, the kubelet defaults to the node allocatable pid capacity.")
    
    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. cmd/kubelet/app/server.go

    				ExperimentalMemoryManagerPolicy:         s.MemoryManagerPolicy,
    				ExperimentalMemoryManagerReservedMemory: s.ReservedMemory,
    				PodPidsLimit:                            s.PodPidsLimit,
    				EnforceCPULimits:                        s.CPUCFSQuota,
    				CPUCFSQuotaPeriod:                       s.CPUCFSQuotaPeriod.Duration,
    				TopologyManagerPolicy:                   s.TopologyManagerPolicy,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. pkg/kubelet/apis/config/types.go

    	// In cluster mode, this is obtained from the master.
    	PodCIDR string
    	// The maximum number of processes per pod.  If -1, the kubelet defaults to the node allocatable pid capacity.
    	PodPidsLimit int64
    	// ResolverConfig is the resolver configuration file used as the basis
    	// for the container DNS resolution configuration.
    	ResolverConfig string
    	// RunOnce causes the Kubelet to check the API server once for pods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  5. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"string"},
    							Format:      "",
    						},
    					},
    					"podPidsLimit": {
    						SchemaProps: spec.SchemaProps{
    							Description: "podPidsLimit is the maximum number of PIDs in any pod. Default: -1",
    							Type:        []string{"integer"},
    							Format:      "int64",
    						},
    					},
    					"resolvConf": {
    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