KubeletConfigResponse

data class KubeletConfigResponse(val allowedUnsafeSysctls: List<String>? = null, val containerLogMaxFiles: Int? = null, val containerLogMaxSizeMB: Int? = null, val cpuCfsQuota: Boolean? = null, val cpuCfsQuotaPeriod: String? = null, val cpuManagerPolicy: String? = null, val failSwapOn: Boolean? = null, val imageGcHighThreshold: Int? = null, val imageGcLowThreshold: Int? = null, val podMaxPids: Int? = null, val topologyManagerPolicy: String? = null)

Kubelet configurations of agent nodes.

Constructors

Link copied to clipboard
constructor(allowedUnsafeSysctls: List<String>? = null, containerLogMaxFiles: Int? = null, containerLogMaxSizeMB: Int? = null, cpuCfsQuota: Boolean? = null, cpuCfsQuotaPeriod: String? = null, cpuManagerPolicy: String? = null, failSwapOn: Boolean? = null, imageGcHighThreshold: Int? = null, imageGcLowThreshold: Int? = null, podMaxPids: Int? = null, topologyManagerPolicy: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Allowlist of unsafe sysctls or unsafe sysctl patterns (ending in *).

Link copied to clipboard

The maximum number of container log files that can be present for a container. The number must be ≥ 2.

Link copied to clipboard

The maximum size (e.g. 10Mi) of container log file before it is rotated.

Link copied to clipboard
val cpuCfsQuota: Boolean? = null

Enable CPU CFS quota enforcement for containers that specify CPU limits.

Link copied to clipboard

Sets CPU CFS quota period value.

Link copied to clipboard

CPU Manager policy to use.

Link copied to clipboard
val failSwapOn: Boolean? = null

If set to true it will make the Kubelet fail to start if swap is enabled on the node.

Link copied to clipboard

The percent of disk usage after which image garbage collection is always run.

Link copied to clipboard

The percent of disk usage before which image garbage collection is never run.

Link copied to clipboard
val podMaxPids: Int? = null

The maximum number of processes per pod.

Link copied to clipboard

Topology Manager policy to use.