Cluster Node Pool Node Config Kubelet Config Args
data class ClusterNodePoolNodeConfigKubeletConfigArgs(val cpuCfsQuota: Output<Boolean>? = null, val cpuCfsQuotaPeriod: Output<String>? = null, val cpuManagerPolicy: Output<String>, val podPidsLimit: Output<Int>? = null) : ConvertibleToJava<ClusterNodePoolNodeConfigKubeletConfigArgs>
Properties
Link copied to clipboard
If true, enables CPU CFS quota enforcement for containers that specify CPU limits.
Link copied to clipboard
The CPU CFS quota period value. Specified as a sequence of decimal numbers, each with optional fraction and a unit suffix, such as "300ms"
. Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". The value must be a positive duration.
Link copied to clipboard
The CPU management policy on the node. See K8S CPU Management Policies. One of "none"
or "static"
. Defaults to none
when kubelet_config
is unset.
Link copied to clipboard
Controls the maximum number of processes allowed to run in a pod. The value must be greater than or equal to 1024 and less than 4194304.