BareMetalKubeletConfigResponse

data class BareMetalKubeletConfigResponse(val registryBurst: Int, val registryPullQps: Int, val serializeImagePullsDisabled: Boolean)

KubeletConfig defines the modifiable kubelet configurations for baremetal machines. Note: this list includes fields supported in GKE (see https://cloud.google.com/kubernetes-engine/docs/how-to/node-system-config#kubelet-options).

Constructors

Link copied to clipboard
constructor(registryBurst: Int, registryPullQps: Int, serializeImagePullsDisabled: Boolean)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The maximum size of bursty pulls, temporarily allows pulls to burst to this number, while still not exceeding registry_pull_qps. The value must not be a negative number. Updating this field may impact scalability by changing the amount of traffic produced by image pulls. Defaults to 10.

Link copied to clipboard

The limit of registry pulls per second. Setting this value to 0 means no limit. Updating this field may impact scalability by changing the amount of traffic produced by image pulls. Defaults to 5.

Link copied to clipboard

Prevents the Kubelet from pulling multiple images at a time. We recommend not changing the default value on nodes that run docker daemon with version < 1.9 or an Another Union File System (Aufs) storage backend. Issue https://github.com/kubernetes/kubernetes/issues/10959 has more details.