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
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>
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>,
source§impl PartialEq<HorizontalPodAutoscalerSpec> for HorizontalPodAutoscalerSpec
impl PartialEq<HorizontalPodAutoscalerSpec> for HorizontalPodAutoscalerSpec
source§fn eq(&self, other: &HorizontalPodAutoscalerSpec) -> bool
fn eq(&self, other: &HorizontalPodAutoscalerSpec) -> bool
self
and other
values to be equal, and is used
by ==
.