Class HorizontalPodAutoscalerStatusArgs
HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.
Inherited Members
Namespace: Pulumi.Kubernetes.Types.Inputs.Autoscaling.V2Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class HorizontalPodAutoscalerStatusArgs : ResourceArgs
Properties
View SourceConditions
conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.
Declaration
public InputList<HorizontalPodAutoscalerConditionArgs> Conditions { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<HorizontalPodAutoscalerConditionArgs> |
CurrentMetrics
currentMetrics is the last read state of the metrics used by this autoscaler.
Declaration
public InputList<MetricStatusArgs> CurrentMetrics { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<MetricStatusArgs> |
CurrentReplicas
currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.
Declaration
public Input<int> CurrentReplicas { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
DesiredReplicas
desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.
Declaration
public Input<int> DesiredReplicas { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
LastScaleTime
lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed.
Declaration
public Input<string> LastScaleTime { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ObservedGeneration
observedGeneration is the most recent generation observed by this autoscaler.
Declaration
public Input<int> ObservedGeneration { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |