Struct google_api_proto::google::container::v1beta1::NodeKubeletConfig
source · pub struct NodeKubeletConfig {
pub cpu_manager_policy: String,
pub cpu_cfs_quota: Option<bool>,
pub cpu_cfs_quota_period: String,
pub pod_pids_limit: i64,
pub insecure_kubelet_readonly_port_enabled: Option<bool>,
}
Expand description
Node kubelet configs.
Fields§
§cpu_manager_policy: String
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.
cpu_cfs_quota: Option<bool>
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.
cpu_cfs_quota_period: String
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.
pod_pids_limit: i64
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.
insecure_kubelet_readonly_port_enabled: Option<bool>
Enable or disable Kubelet read only port.
Implementations§
source§impl NodeKubeletConfig
impl NodeKubeletConfig
sourcepub fn insecure_kubelet_readonly_port_enabled(&self) -> bool
pub fn insecure_kubelet_readonly_port_enabled(&self) -> bool
Returns the value of insecure_kubelet_readonly_port_enabled
, or the default value if insecure_kubelet_readonly_port_enabled
is unset.
Trait Implementations§
source§impl Clone for NodeKubeletConfig
impl Clone for NodeKubeletConfig
source§fn clone(&self) -> NodeKubeletConfig
fn clone(&self) -> NodeKubeletConfig
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for NodeKubeletConfig
impl Debug for NodeKubeletConfig
source§impl Default for NodeKubeletConfig
impl Default for NodeKubeletConfig
source§impl Message for NodeKubeletConfig
impl Message for NodeKubeletConfig
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for NodeKubeletConfig
impl PartialEq for NodeKubeletConfig
source§fn eq(&self, other: &NodeKubeletConfig) -> bool
fn eq(&self, other: &NodeKubeletConfig) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for NodeKubeletConfig
Auto Trait Implementations§
impl Freeze for NodeKubeletConfig
impl RefUnwindSafe for NodeKubeletConfig
impl Send for NodeKubeletConfig
impl Sync for NodeKubeletConfig
impl Unpin for NodeKubeletConfig
impl UnwindSafe for NodeKubeletConfig
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request