pub struct NodeKubeletConfig {
pub cpu_cfs_quota: Option<bool>,
pub cpu_cfs_quota_period: Option<String>,
pub cpu_manager_policy: Option<String>,
pub insecure_kubelet_readonly_port_enabled: Option<bool>,
pub pod_pids_limit: Option<i64>,
}
Expand description
Node kubelet configs.
This type is not used in any activity, and only used as part of another schema.
Fields§
§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: Option<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.
cpu_manager_policy: Option<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.
insecure_kubelet_readonly_port_enabled: Option<bool>
Enable or disable Kubelet read only port.
pod_pids_limit: Option<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.
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§fn default() -> NodeKubeletConfig
fn default() -> NodeKubeletConfig
Source§impl<'de> Deserialize<'de> for NodeKubeletConfig
impl<'de> Deserialize<'de> for NodeKubeletConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for NodeKubeletConfig
impl Serialize for NodeKubeletConfig
impl Part 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more