Struct k8s_openapi::v1_8::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>
lower limit for the number of pods that can be set by the autoscaler, default 1.
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HorizontalPodAutoscalerSpec
impl Debug for HorizontalPodAutoscalerSpec
source§impl Default for HorizontalPodAutoscalerSpec
impl Default for HorizontalPodAutoscalerSpec
source§fn default() -> HorizontalPodAutoscalerSpec
fn default() -> HorizontalPodAutoscalerSpec
Returns the “default value” for a type. Read more
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>,
Deserialize this value from the given Serde deserializer. Read more