pub struct EvictionMinimumReclaim {
pub imagefs_available: Option<String>,
pub imagefs_inodes_free: Option<String>,
pub memory_available: Option<String>,
pub nodefs_available: Option<String>,
pub nodefs_inodes_free: Option<String>,
pub pid_available: Option<String>,
}Expand description
Eviction minimum reclaims are the resource amounts of minimum reclaims for each eviction signal.
This type is not used in any activity, and only used as part of another schema.
Fields§
§imagefs_available: Option<String>Optional. Minimum reclaim for eviction due to imagefs available signal. Only take percentage value for now. Sample format: “10%”. Must be <=10%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals
imagefs_inodes_free: Option<String>Optional. Minimum reclaim for eviction due to imagefs inodes free signal. Only take percentage value for now. Sample format: “10%”. Must be <=10%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals
memory_available: Option<String>Optional. Minimum reclaim for eviction due to memory available signal. Only take percentage value for now. Sample format: “10%”. Must be <=10%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals
nodefs_available: Option<String>Optional. Minimum reclaim for eviction due to nodefs available signal. Only take percentage value for now. Sample format: “10%”. Must be <=10%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals
nodefs_inodes_free: Option<String>Optional. Minimum reclaim for eviction due to nodefs inodes free signal. Only take percentage value for now. Sample format: “10%”. Must be <=10%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals
pid_available: Option<String>Optional. Minimum reclaim for eviction due to pid available signal. Only take percentage value for now. Sample format: “10%”. Must be <=10%. See https://kubernetes.io/docs/concepts/scheduling-eviction/node-pressure-eviction/#eviction-signals
Trait Implementations§
Source§impl Clone for EvictionMinimumReclaim
impl Clone for EvictionMinimumReclaim
Source§fn clone(&self) -> EvictionMinimumReclaim
fn clone(&self) -> EvictionMinimumReclaim
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more