Google Kubernetes Engine v1 API - Class NodeKubeletConfig (3.25.0)

public sealed class NodeKubeletConfig : IMessage<NodeKubeletConfig>, IEquatable<NodeKubeletConfig>, IDeepCloneable<NodeKubeletConfig>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Kubernetes Engine v1 API class NodeKubeletConfig.

Node kubelet configs.

Inheritance

object > NodeKubeletConfig

Namespace

Google.Cloud.Container.V1

Assembly

Google.Cloud.Container.V1.dll

Constructors

NodeKubeletConfig()

public NodeKubeletConfig()

NodeKubeletConfig(NodeKubeletConfig)

public NodeKubeletConfig(NodeKubeletConfig other)
Parameter
NameDescription
otherNodeKubeletConfig

Properties

CpuCfsQuota

public bool? CpuCfsQuota { get; set; }

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

This option is enabled by default which makes kubelet use CFS quota (https://www.kernel.org/doc/Documentation/scheduler/sched-bwc.txt) to enforce container CPU limits. Otherwise, CPU limits will not be enforced at all.

Disable this option to mitigate CPU throttling problems while still having your pods to be in Guaranteed QoS class by specifying the CPU limits.

The default value is 'true' if unspecified.

Property Value
TypeDescription
bool

CpuCfsQuotaPeriod

public string CpuCfsQuotaPeriod { get; set; }

Set the CPU CFS quota period value 'cpu.cfs_period_us'.

The string must be 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.

Property Value
TypeDescription
string

CpuManagerPolicy

public string CpuManagerPolicy { get; set; }

Control the CPU management policy on the node. See https://kubernetes.io/docs/tasks/administer-cluster/cpu-management-policies/

The following values are allowed.

  • "none": the default, which represents the existing scheduling behavior.
  • "static": allows pods with certain resource characteristics to be granted increased CPU affinity and exclusivity on the node. The default value is 'none' if unspecified.
Property Value
TypeDescription
string

HasInsecureKubeletReadonlyPortEnabled

public bool HasInsecureKubeletReadonlyPortEnabled { get; }

Gets whether the "insecure_kubelet_readonly_port_enabled" field is set

Property Value
TypeDescription
bool

InsecureKubeletReadonlyPortEnabled

public bool InsecureKubeletReadonlyPortEnabled { get; set; }

Enable or disable Kubelet read only port.

Property Value
TypeDescription
bool

PodPidsLimit

public long PodPidsLimit { get; set; }

Set the Pod PID limits. See https://kubernetes.io/docs/concepts/policy/pid-limiting/#pod-pid-limits

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.

Property Value
TypeDescription
long