Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for podPidsLimit (0.66 sec)

  1. pkg/kubelet/cm/pod_container_manager_linux.go

    			Name:               podContainerName,
    			ResourceParameters: ResourceConfigForPod(pod, m.enforceCPULimits, m.cpuCFSQuotaPeriod, enforceMemoryQoS),
    		}
    		if m.podPidsLimit > 0 {
    			containerConfig.ResourceParameters.PidsLimit = &m.podPidsLimit
    		}
    		if enforceMemoryQoS {
    			klog.V(4).InfoS("MemoryQoS config for pod", "pod", klog.KObj(pod), "unified", containerConfig.ResourceParameters.Unified)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 16:38:36 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/helpers_test.go

    		"MemorySwap.SwapBehavior",
    		"NodeLeaseDurationSeconds",
    		"NodeStatusMaxImages",
    		"NodeStatusUpdateFrequency.Duration",
    		"NodeStatusReportFrequency.Duration",
    		"OOMScoreAdj",
    		"PodCIDR",
    		"PodPidsLimit",
    		"PodsPerCore",
    		"Port",
    		"ProtectKernelDefaults",
    		"ProviderID",
    		"ReadOnlyPort",
    		"RegisterNode",
    		"RegistryBurst",
    		"RegistryPullQPS",
    		"ReservedMemory",
    		"ReservedSystemCPUs",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
Back to top