Struct k8s_openapi::api::autoscaling::v1::HorizontalPodAutoscalerSpec
source · pub struct HorizontalPodAutoscalerSpec {
pub max_replicas: i32,
pub min_replicas: Option<i32>,
pub scale_target_ref: CrossVersionObjectReference,
pub target_cpu_utilization_percentage: Option<i32>,
}
Expand description
specification of a horizontal pod autoscaler.
Fields§
§max_replicas: i32
maxReplicas is the upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.
min_replicas: Option<i32>
minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod. minReplicas is allowed to be 0 if the alpha feature gate HPAScaleToZero is enabled and at least one Object or External metric is configured. Scaling is active as long as at least one metric value is available.
scale_target_ref: CrossVersionObjectReference
reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource.
target_cpu_utilization_percentage: Option<i32>
targetCPUUtilizationPercentage is the target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.
Trait Implementations§
source§impl Clone for HorizontalPodAutoscalerSpec
impl Clone for HorizontalPodAutoscalerSpec
source§fn clone(&self) -> HorizontalPodAutoscalerSpec
fn clone(&self) -> HorizontalPodAutoscalerSpec
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for HorizontalPodAutoscalerSpec
impl Debug for HorizontalPodAutoscalerSpec
source§impl DeepMerge for HorizontalPodAutoscalerSpec
impl DeepMerge for HorizontalPodAutoscalerSpec
source§fn merge_from(&mut self, other: Self)
fn merge_from(&mut self, other: Self)
other
into self
.source§impl Default for HorizontalPodAutoscalerSpec
impl Default for HorizontalPodAutoscalerSpec
source§fn default() -> HorizontalPodAutoscalerSpec
fn default() -> HorizontalPodAutoscalerSpec
source§impl<'de> Deserialize<'de> for HorizontalPodAutoscalerSpec
impl<'de> Deserialize<'de> for HorizontalPodAutoscalerSpec
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>,
impl StructuralPartialEq for HorizontalPodAutoscalerSpec
Auto Trait Implementations§
impl Freeze for HorizontalPodAutoscalerSpec
impl RefUnwindSafe for HorizontalPodAutoscalerSpec
impl Send for HorizontalPodAutoscalerSpec
impl Sync for HorizontalPodAutoscalerSpec
impl Unpin for HorizontalPodAutoscalerSpec
impl UnwindSafe for HorizontalPodAutoscalerSpec
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)