AKSServiceResponseResponseAutoScaler

data class AKSServiceResponseResponseAutoScaler(val autoscaleEnabled: Boolean? = null, val maxReplicas: Int? = null, val minReplicas: Int? = null, val refreshPeriodInSeconds: Int? = null, val targetUtilization: Int? = null)

The auto scaler properties.

Constructors

Link copied to clipboard
constructor(autoscaleEnabled: Boolean? = null, maxReplicas: Int? = null, minReplicas: Int? = null, refreshPeriodInSeconds: Int? = null, targetUtilization: Int? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Option to enable/disable auto scaling.

Link copied to clipboard
val maxReplicas: Int? = null

The maximum number of replicas in the cluster.

Link copied to clipboard
val minReplicas: Int? = null

The minimum number of replicas to scale down to.

Link copied to clipboard

The amount of seconds to wait between auto scale updates.

Link copied to clipboard
val targetUtilization: Int? = null

The target utilization percentage to use for determining whether to scale the cluster.