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
sourceimpl Clone for HorizontalPodAutoscalerSpec
impl Clone for HorizontalPodAutoscalerSpec
sourcefn clone(&self) -> HorizontalPodAutoscalerSpec
fn clone(&self) -> HorizontalPodAutoscalerSpec
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for HorizontalPodAutoscalerSpec
impl Debug for HorizontalPodAutoscalerSpec
sourceimpl Default for HorizontalPodAutoscalerSpec
impl Default for HorizontalPodAutoscalerSpec
sourcefn default() -> HorizontalPodAutoscalerSpec
fn default() -> HorizontalPodAutoscalerSpec
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for HorizontalPodAutoscalerSpec
impl<'de> Deserialize<'de> for HorizontalPodAutoscalerSpec
sourcefn 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
sourceimpl PartialEq<HorizontalPodAutoscalerSpec> for HorizontalPodAutoscalerSpec
impl PartialEq<HorizontalPodAutoscalerSpec> for HorizontalPodAutoscalerSpec
sourcefn eq(&self, other: &HorizontalPodAutoscalerSpec) -> bool
fn eq(&self, other: &HorizontalPodAutoscalerSpec) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &HorizontalPodAutoscalerSpec) -> bool
fn ne(&self, other: &HorizontalPodAutoscalerSpec) -> bool
This method tests for !=
.
impl StructuralPartialEq for HorizontalPodAutoscalerSpec
Auto Trait Implementations
impl RefUnwindSafe for HorizontalPodAutoscalerSpec
impl Send for HorizontalPodAutoscalerSpec
impl Sync for HorizontalPodAutoscalerSpec
impl Unpin for HorizontalPodAutoscalerSpec
impl UnwindSafe for HorizontalPodAutoscalerSpec
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more