struct
Kubernetes::HorizontalPodAutoscalerSpec
- Kubernetes::HorizontalPodAutoscalerSpec
- Struct
- Value
- Object
Overview
HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.
Included Modules
- JSON::Serializable
- Kubernetes::Serializable
- YAML::Serializable
Defined in:
generated/models/io_k8s_api_autoscaling_v1.crgenerated/models/io_k8s_api_autoscaling_v2.cr
Constructors
- .new(ctx : YAML::ParseContext, node : YAML::Nodes::Node)
- .new(pull : ::JSON::PullParser)
- .new(*, __pull_for_json_serializable pull : ::JSON::PullParser)
- .new(*, __context_for_yaml_serializable ctx : YAML::ParseContext, __node_for_yaml_serializable node : YAML::Nodes::Node)
Macro Summary
-
field(name, type = nil, **options, &block)
Helper macro for defining fields with automatic camelCase conversion
Instance Method Summary
-
#behavior : HorizontalPodAutoscalerBehavior | Nil
behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively).
-
#behavior=(behavior : HorizontalPodAutoscalerBehavior | Nil)
behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively).
-
#max_replicas : Int32 | Nil
maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up.
-
#max_replicas=(max_replicas : Int32 | Nil)
maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up.
-
#metrics : Array(MetricSpec) | Nil
metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used).
-
#metrics=(metrics : Array(MetricSpec) | Nil)
metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used).
-
#min_replicas : Int32 | Nil
minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down.
-
#min_replicas=(min_replicas : Int32 | Nil)
minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down.
-
#scale_target_ref : CrossVersionObjectReference | Nil
scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.
-
#scale_target_ref=(scale_target_ref : CrossVersionObjectReference | Nil)
scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.
-
#target_cpu_utilization_percentage : Int32 | Nil
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.
-
#target_cpu_utilization_percentage=(target_cpu_utilization_percentage : Int32 | Nil)
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.
Constructor Detail
Macro Detail
Helper macro for defining fields with automatic camelCase conversion
Instance Method Detail
behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively). If not set, the default HPAScalingRules for scale up and scale down are used.
behavior configures the scaling behavior of the target in both Up and Down directions (scaleUp and scaleDown fields respectively). If not set, the default HPAScalingRules for scale up and scale down are used.
maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.
maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.
metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. If not set, the default metric will be set to 80% average CPU utilization.
metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond. If not set, the default metric will be set to 80% average CPU utilization.
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.
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.
scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.
scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.
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.
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.