public final class NodeKubeletConfig extends GeneratedMessageV3 implements NodeKubeletConfigOrBuilder
Node kubelet configs.
Protobuf type google.container.v1.NodeKubeletConfig
Inherited Members
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT)
com.google.protobuf.GeneratedMessageV3.<ListT>makeMutableCopy(ListT,int)
com.google.protobuf.GeneratedMessageV3.<T>emptyList(java.lang.Class<T>)
com.google.protobuf.GeneratedMessageV3.internalGetMapFieldReflection(int)
Static Fields
CPU_CFS_QUOTA_FIELD_NUMBER
public static final int CPU_CFS_QUOTA_FIELD_NUMBER
Field Value |
---|
Type | Description |
int | |
CPU_CFS_QUOTA_PERIOD_FIELD_NUMBER
public static final int CPU_CFS_QUOTA_PERIOD_FIELD_NUMBER
Field Value |
---|
Type | Description |
int | |
CPU_MANAGER_POLICY_FIELD_NUMBER
public static final int CPU_MANAGER_POLICY_FIELD_NUMBER
Field Value |
---|
Type | Description |
int | |
INSECURE_KUBELET_READONLY_PORT_ENABLED_FIELD_NUMBER
public static final int INSECURE_KUBELET_READONLY_PORT_ENABLED_FIELD_NUMBER
Field Value |
---|
Type | Description |
int | |
POD_PIDS_LIMIT_FIELD_NUMBER
public static final int POD_PIDS_LIMIT_FIELD_NUMBER
Field Value |
---|
Type | Description |
int | |
Static Methods
getDefaultInstance()
public static NodeKubeletConfig getDefaultInstance()
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()
newBuilder()
public static NodeKubeletConfig.Builder newBuilder()
newBuilder(NodeKubeletConfig prototype)
public static NodeKubeletConfig.Builder newBuilder(NodeKubeletConfig prototype)
public static NodeKubeletConfig parseDelimitedFrom(InputStream input)
public static NodeKubeletConfig parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
parseFrom(byte[] data)
public static NodeKubeletConfig parseFrom(byte[] data)
Parameter |
---|
Name | Description |
data | byte[]
|
parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
public static NodeKubeletConfig parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
parseFrom(ByteString data)
public static NodeKubeletConfig parseFrom(ByteString data)
parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static NodeKubeletConfig parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
public static NodeKubeletConfig parseFrom(CodedInputStream input)
public static NodeKubeletConfig parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public static NodeKubeletConfig parseFrom(InputStream input)
public static NodeKubeletConfig parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
parseFrom(ByteBuffer data)
public static NodeKubeletConfig parseFrom(ByteBuffer data)
parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
public static NodeKubeletConfig parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
parser()
public static Parser<NodeKubeletConfig> parser()
Methods
equals(Object obj)
public boolean equals(Object obj)
Parameter |
---|
Name | Description |
obj | Object
|
Overrides
getCpuCfsQuota()
public BoolValue getCpuCfsQuota()
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.
.google.protobuf.BoolValue cpu_cfs_quota = 2;
Returns |
---|
Type | Description |
BoolValue | The cpuCfsQuota.
|
getCpuCfsQuotaOrBuilder()
public BoolValueOrBuilder getCpuCfsQuotaOrBuilder()
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.
.google.protobuf.BoolValue cpu_cfs_quota = 2;
getCpuCfsQuotaPeriod()
public String getCpuCfsQuotaPeriod()
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.
string cpu_cfs_quota_period = 3;
Returns |
---|
Type | Description |
String | The cpuCfsQuotaPeriod.
|
getCpuCfsQuotaPeriodBytes()
public ByteString getCpuCfsQuotaPeriodBytes()
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.
string cpu_cfs_quota_period = 3;
Returns |
---|
Type | Description |
ByteString | The bytes for cpuCfsQuotaPeriod.
|
getCpuManagerPolicy()
public String getCpuManagerPolicy()
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.
string cpu_manager_policy = 1;
Returns |
---|
Type | Description |
String | The cpuManagerPolicy.
|
getCpuManagerPolicyBytes()
public ByteString getCpuManagerPolicyBytes()
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.
string cpu_manager_policy = 1;
Returns |
---|
Type | Description |
ByteString | The bytes for cpuManagerPolicy.
|
getDefaultInstanceForType()
public NodeKubeletConfig getDefaultInstanceForType()
getInsecureKubeletReadonlyPortEnabled()
public boolean getInsecureKubeletReadonlyPortEnabled()
Enable or disable Kubelet read only port.
optional bool insecure_kubelet_readonly_port_enabled = 7;
Returns |
---|
Type | Description |
boolean | The insecureKubeletReadonlyPortEnabled.
|
getParserForType()
public Parser<NodeKubeletConfig> getParserForType()
Overrides
getPodPidsLimit()
public long getPodPidsLimit()
Returns |
---|
Type | Description |
long | The podPidsLimit.
|
getSerializedSize()
public int getSerializedSize()
Returns |
---|
Type | Description |
int | |
Overrides
hasCpuCfsQuota()
public boolean hasCpuCfsQuota()
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.
.google.protobuf.BoolValue cpu_cfs_quota = 2;
Returns |
---|
Type | Description |
boolean | Whether the cpuCfsQuota field is set.
|
hasInsecureKubeletReadonlyPortEnabled()
public boolean hasInsecureKubeletReadonlyPortEnabled()
Enable or disable Kubelet read only port.
optional bool insecure_kubelet_readonly_port_enabled = 7;
Returns |
---|
Type | Description |
boolean | Whether the insecureKubeletReadonlyPortEnabled field is set.
|
hashCode()
Returns |
---|
Type | Description |
int | |
Overrides
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Overrides
isInitialized()
public final boolean isInitialized()
Overrides
newBuilderForType()
public NodeKubeletConfig.Builder newBuilderForType()
newBuilderForType(GeneratedMessageV3.BuilderParent parent)
protected NodeKubeletConfig.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Overrides
newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Overrides
toBuilder()
public NodeKubeletConfig.Builder toBuilder()
writeTo(CodedOutputStream output)
public void writeTo(CodedOutputStream output)
Overrides