KubernetesClusterDefaultNodePoolKubeletConfig

data class KubernetesClusterDefaultNodePoolKubeletConfig(val allowedUnsafeSysctls: List<String>? = null, val containerLogMaxLine: Int? = null, val containerLogMaxSizeMb: Int? = null, val cpuCfsQuotaEnabled: Boolean? = null, val cpuCfsQuotaPeriod: String? = null, val cpuManagerPolicy: String? = null, val imageGcHighThreshold: Int? = null, val imageGcLowThreshold: Int? = null, val podMaxPid: Int? = null, val topologyManagerPolicy: String? = null)

Constructors

constructor(allowedUnsafeSysctls: List<String>? = null, containerLogMaxLine: Int? = null, containerLogMaxSizeMb: Int? = null, cpuCfsQuotaEnabled: Boolean? = null, cpuCfsQuotaPeriod: String? = null, cpuManagerPolicy: String? = null, imageGcHighThreshold: Int? = null, imageGcLowThreshold: Int? = null, podMaxPid: Int? = null, topologyManagerPolicy: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Specifies the allow list of unsafe sysctls command or patterns (ending in *).

Link copied to clipboard

Specifies the maximum number of container log files that can be present for a container. must be at least 2.

Link copied to clipboard

Specifies the maximum size (e.g. 10MB) of container log file before it is rotated.

Link copied to clipboard

Is CPU CFS quota enforcement for containers enabled? Defaults to true.

Link copied to clipboard

Specifies the CPU CFS quota period value.

Link copied to clipboard

Specifies the CPU Manager policy to use. Possible values are none and static,.

Link copied to clipboard

Specifies the percent of disk usage above which image garbage collection is always run. Must be between 0 and 100.

Link copied to clipboard

Specifies the percent of disk usage lower than which image garbage collection is never run. Must be between 0 and 100.

Link copied to clipboard
val podMaxPid: Int? = null

Specifies the maximum number of processes per pod.

Link copied to clipboard

Specifies the Topology Manager policy to use. Possible values are none, best-effort, restricted or single-numa-node.