alicloud.cs.AutoscalingConfig
Explore with Pulumi AI
This resource will help you configure auto scaling for the kubernetes cluster, see What is autoscaling config.
NOTE: Available since v1.127.0.
NOTE: From version 1.164.0, support for specifying whether to allow the scale-in of nodes by parameter
scale_down_enabled
.
NOTE: From version 1.164.0, support for selecting the policy for selecting which node pool to scale by parameter
expander
.
Create AutoscalingConfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AutoscalingConfig(name: string, args?: AutoscalingConfigArgs, opts?: CustomResourceOptions);
@overload
def AutoscalingConfig(resource_name: str,
args: Optional[AutoscalingConfigArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def AutoscalingConfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[str] = None,
cool_down_duration: Optional[str] = None,
daemonset_eviction_for_nodes: Optional[bool] = None,
expander: Optional[str] = None,
gpu_utilization_threshold: Optional[str] = None,
max_graceful_termination_sec: Optional[int] = None,
min_replica_count: Optional[int] = None,
recycle_node_deletion_enabled: Optional[bool] = None,
scale_down_enabled: Optional[bool] = None,
scale_up_from_zero: Optional[bool] = None,
scan_interval: Optional[str] = None,
skip_nodes_with_local_storage: Optional[bool] = None,
skip_nodes_with_system_pods: Optional[bool] = None,
unneeded_duration: Optional[str] = None,
utilization_threshold: Optional[str] = None)
func NewAutoscalingConfig(ctx *Context, name string, args *AutoscalingConfigArgs, opts ...ResourceOption) (*AutoscalingConfig, error)
public AutoscalingConfig(string name, AutoscalingConfigArgs? args = null, CustomResourceOptions? opts = null)
public AutoscalingConfig(String name, AutoscalingConfigArgs args)
public AutoscalingConfig(String name, AutoscalingConfigArgs args, CustomResourceOptions options)
type: alicloud:cs:AutoscalingConfig
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AutoscalingConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AutoscalingConfigArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AutoscalingConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AutoscalingConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AutoscalingConfigArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var autoscalingConfigResource = new AliCloud.CS.AutoscalingConfig("autoscalingConfigResource", new()
{
ClusterId = "string",
CoolDownDuration = "string",
DaemonsetEvictionForNodes = false,
Expander = "string",
GpuUtilizationThreshold = "string",
MaxGracefulTerminationSec = 0,
MinReplicaCount = 0,
RecycleNodeDeletionEnabled = false,
ScaleDownEnabled = false,
ScaleUpFromZero = false,
ScanInterval = "string",
SkipNodesWithLocalStorage = false,
SkipNodesWithSystemPods = false,
UnneededDuration = "string",
UtilizationThreshold = "string",
});
example, err := cs.NewAutoscalingConfig(ctx, "autoscalingConfigResource", &cs.AutoscalingConfigArgs{
ClusterId: pulumi.String("string"),
CoolDownDuration: pulumi.String("string"),
DaemonsetEvictionForNodes: pulumi.Bool(false),
Expander: pulumi.String("string"),
GpuUtilizationThreshold: pulumi.String("string"),
MaxGracefulTerminationSec: pulumi.Int(0),
MinReplicaCount: pulumi.Int(0),
RecycleNodeDeletionEnabled: pulumi.Bool(false),
ScaleDownEnabled: pulumi.Bool(false),
ScaleUpFromZero: pulumi.Bool(false),
ScanInterval: pulumi.String("string"),
SkipNodesWithLocalStorage: pulumi.Bool(false),
SkipNodesWithSystemPods: pulumi.Bool(false),
UnneededDuration: pulumi.String("string"),
UtilizationThreshold: pulumi.String("string"),
})
var autoscalingConfigResource = new AutoscalingConfig("autoscalingConfigResource", AutoscalingConfigArgs.builder()
.clusterId("string")
.coolDownDuration("string")
.daemonsetEvictionForNodes(false)
.expander("string")
.gpuUtilizationThreshold("string")
.maxGracefulTerminationSec(0)
.minReplicaCount(0)
.recycleNodeDeletionEnabled(false)
.scaleDownEnabled(false)
.scaleUpFromZero(false)
.scanInterval("string")
.skipNodesWithLocalStorage(false)
.skipNodesWithSystemPods(false)
.unneededDuration("string")
.utilizationThreshold("string")
.build());
autoscaling_config_resource = alicloud.cs.AutoscalingConfig("autoscalingConfigResource",
cluster_id="string",
cool_down_duration="string",
daemonset_eviction_for_nodes=False,
expander="string",
gpu_utilization_threshold="string",
max_graceful_termination_sec=0,
min_replica_count=0,
recycle_node_deletion_enabled=False,
scale_down_enabled=False,
scale_up_from_zero=False,
scan_interval="string",
skip_nodes_with_local_storage=False,
skip_nodes_with_system_pods=False,
unneeded_duration="string",
utilization_threshold="string")
const autoscalingConfigResource = new alicloud.cs.AutoscalingConfig("autoscalingConfigResource", {
clusterId: "string",
coolDownDuration: "string",
daemonsetEvictionForNodes: false,
expander: "string",
gpuUtilizationThreshold: "string",
maxGracefulTerminationSec: 0,
minReplicaCount: 0,
recycleNodeDeletionEnabled: false,
scaleDownEnabled: false,
scaleUpFromZero: false,
scanInterval: "string",
skipNodesWithLocalStorage: false,
skipNodesWithSystemPods: false,
unneededDuration: "string",
utilizationThreshold: "string",
});
type: alicloud:cs:AutoscalingConfig
properties:
clusterId: string
coolDownDuration: string
daemonsetEvictionForNodes: false
expander: string
gpuUtilizationThreshold: string
maxGracefulTerminationSec: 0
minReplicaCount: 0
recycleNodeDeletionEnabled: false
scaleDownEnabled: false
scaleUpFromZero: false
scanInterval: string
skipNodesWithLocalStorage: false
skipNodesWithSystemPods: false
unneededDuration: string
utilizationThreshold: string
AutoscalingConfig Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The AutoscalingConfig resource accepts the following input properties:
- Cluster
Id string - The id of kubernetes cluster.
- Cool
Down stringDuration - The cool down duration. Default is
10m
. If the delay (cooldown) value is set too long, there could be complaints that the Horizontal Pod Autoscaler is not responsive to workload changes. However, if the delay value is set too short, the scale of the replicas set may keep thrashing as usual. - Daemonset
Eviction boolFor Nodes - If true DaemonSet pods will be terminated from nodes. Default is
false
. - Expander string
- The policy for selecting which node pool to scale. Valid values:
least-waste
,random
,priority
. For more information on these policies, see Configure auto scaling - Gpu
Utilization stringThreshold - The scale-in threshold for GPU instance. Default is
0.5
. - Max
Graceful intTermination Sec - Maximum number of seconds CA waits for pod termination when trying to scale down a node. Default is
14400
. - Min
Replica intCount - Minimum number of replicas that a replica set or replication controller should have to allow their pods deletion in scale down. Default is
0
. - Recycle
Node boolDeletion Enabled - Should CA delete the K8s node object when recycle node has scaled down successfully. Default is
false
. - Scale
Down boolEnabled - Specify whether to allow the scale-in of nodes. Default is
true
. - Scale
Up boolFrom Zero - Should CA scale up when there 0 ready nodes. Default is
true
. - Scan
Interval string - The interval at which the cluster is reevaluated for scaling. Default is
30s
. - Skip
Nodes boolWith Local Storage - If true cluster autoscaler will never delete nodes with pods with local storage, e.g. EmptyDir or HostPath. Default is
false
. - Skip
Nodes boolWith System Pods - If true cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Default is
true
. - Unneeded
Duration string - The unneeded duration. Default is
10m
. - Utilization
Threshold string - The scale-in threshold. Default is
0.5
.
- Cluster
Id string - The id of kubernetes cluster.
- Cool
Down stringDuration - The cool down duration. Default is
10m
. If the delay (cooldown) value is set too long, there could be complaints that the Horizontal Pod Autoscaler is not responsive to workload changes. However, if the delay value is set too short, the scale of the replicas set may keep thrashing as usual. - Daemonset
Eviction boolFor Nodes - If true DaemonSet pods will be terminated from nodes. Default is
false
. - Expander string
- The policy for selecting which node pool to scale. Valid values:
least-waste
,random
,priority
. For more information on these policies, see Configure auto scaling - Gpu
Utilization stringThreshold - The scale-in threshold for GPU instance. Default is
0.5
. - Max
Graceful intTermination Sec - Maximum number of seconds CA waits for pod termination when trying to scale down a node. Default is
14400
. - Min
Replica intCount - Minimum number of replicas that a replica set or replication controller should have to allow their pods deletion in scale down. Default is
0
. - Recycle
Node boolDeletion Enabled - Should CA delete the K8s node object when recycle node has scaled down successfully. Default is
false
. - Scale
Down boolEnabled - Specify whether to allow the scale-in of nodes. Default is
true
. - Scale
Up boolFrom Zero - Should CA scale up when there 0 ready nodes. Default is
true
. - Scan
Interval string - The interval at which the cluster is reevaluated for scaling. Default is
30s
. - Skip
Nodes boolWith Local Storage - If true cluster autoscaler will never delete nodes with pods with local storage, e.g. EmptyDir or HostPath. Default is
false
. - Skip
Nodes boolWith System Pods - If true cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Default is
true
. - Unneeded
Duration string - The unneeded duration. Default is
10m
. - Utilization
Threshold string - The scale-in threshold. Default is
0.5
.
- cluster
Id String - The id of kubernetes cluster.
- cool
Down StringDuration - The cool down duration. Default is
10m
. If the delay (cooldown) value is set too long, there could be complaints that the Horizontal Pod Autoscaler is not responsive to workload changes. However, if the delay value is set too short, the scale of the replicas set may keep thrashing as usual. - daemonset
Eviction BooleanFor Nodes - If true DaemonSet pods will be terminated from nodes. Default is
false
. - expander String
- The policy for selecting which node pool to scale. Valid values:
least-waste
,random
,priority
. For more information on these policies, see Configure auto scaling - gpu
Utilization StringThreshold - The scale-in threshold for GPU instance. Default is
0.5
. - max
Graceful IntegerTermination Sec - Maximum number of seconds CA waits for pod termination when trying to scale down a node. Default is
14400
. - min
Replica IntegerCount - Minimum number of replicas that a replica set or replication controller should have to allow their pods deletion in scale down. Default is
0
. - recycle
Node BooleanDeletion Enabled - Should CA delete the K8s node object when recycle node has scaled down successfully. Default is
false
. - scale
Down BooleanEnabled - Specify whether to allow the scale-in of nodes. Default is
true
. - scale
Up BooleanFrom Zero - Should CA scale up when there 0 ready nodes. Default is
true
. - scan
Interval String - The interval at which the cluster is reevaluated for scaling. Default is
30s
. - skip
Nodes BooleanWith Local Storage - If true cluster autoscaler will never delete nodes with pods with local storage, e.g. EmptyDir or HostPath. Default is
false
. - skip
Nodes BooleanWith System Pods - If true cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Default is
true
. - unneeded
Duration String - The unneeded duration. Default is
10m
. - utilization
Threshold String - The scale-in threshold. Default is
0.5
.
- cluster
Id string - The id of kubernetes cluster.
- cool
Down stringDuration - The cool down duration. Default is
10m
. If the delay (cooldown) value is set too long, there could be complaints that the Horizontal Pod Autoscaler is not responsive to workload changes. However, if the delay value is set too short, the scale of the replicas set may keep thrashing as usual. - daemonset
Eviction booleanFor Nodes - If true DaemonSet pods will be terminated from nodes. Default is
false
. - expander string
- The policy for selecting which node pool to scale. Valid values:
least-waste
,random
,priority
. For more information on these policies, see Configure auto scaling - gpu
Utilization stringThreshold - The scale-in threshold for GPU instance. Default is
0.5
. - max
Graceful numberTermination Sec - Maximum number of seconds CA waits for pod termination when trying to scale down a node. Default is
14400
. - min
Replica numberCount - Minimum number of replicas that a replica set or replication controller should have to allow their pods deletion in scale down. Default is
0
. - recycle
Node booleanDeletion Enabled - Should CA delete the K8s node object when recycle node has scaled down successfully. Default is
false
. - scale
Down booleanEnabled - Specify whether to allow the scale-in of nodes. Default is
true
. - scale
Up booleanFrom Zero - Should CA scale up when there 0 ready nodes. Default is
true
. - scan
Interval string - The interval at which the cluster is reevaluated for scaling. Default is
30s
. - skip
Nodes booleanWith Local Storage - If true cluster autoscaler will never delete nodes with pods with local storage, e.g. EmptyDir or HostPath. Default is
false
. - skip
Nodes booleanWith System Pods - If true cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Default is
true
. - unneeded
Duration string - The unneeded duration. Default is
10m
. - utilization
Threshold string - The scale-in threshold. Default is
0.5
.
- cluster_
id str - The id of kubernetes cluster.
- cool_
down_ strduration - The cool down duration. Default is
10m
. If the delay (cooldown) value is set too long, there could be complaints that the Horizontal Pod Autoscaler is not responsive to workload changes. However, if the delay value is set too short, the scale of the replicas set may keep thrashing as usual. - daemonset_
eviction_ boolfor_ nodes - If true DaemonSet pods will be terminated from nodes. Default is
false
. - expander str
- The policy for selecting which node pool to scale. Valid values:
least-waste
,random
,priority
. For more information on these policies, see Configure auto scaling - gpu_
utilization_ strthreshold - The scale-in threshold for GPU instance. Default is
0.5
. - max_
graceful_ inttermination_ sec - Maximum number of seconds CA waits for pod termination when trying to scale down a node. Default is
14400
. - min_
replica_ intcount - Minimum number of replicas that a replica set or replication controller should have to allow their pods deletion in scale down. Default is
0
. - recycle_
node_ booldeletion_ enabled - Should CA delete the K8s node object when recycle node has scaled down successfully. Default is
false
. - scale_
down_ boolenabled - Specify whether to allow the scale-in of nodes. Default is
true
. - scale_
up_ boolfrom_ zero - Should CA scale up when there 0 ready nodes. Default is
true
. - scan_
interval str - The interval at which the cluster is reevaluated for scaling. Default is
30s
. - skip_
nodes_ boolwith_ local_ storage - If true cluster autoscaler will never delete nodes with pods with local storage, e.g. EmptyDir or HostPath. Default is
false
. - skip_
nodes_ boolwith_ system_ pods - If true cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Default is
true
. - unneeded_
duration str - The unneeded duration. Default is
10m
. - utilization_
threshold str - The scale-in threshold. Default is
0.5
.
- cluster
Id String - The id of kubernetes cluster.
- cool
Down StringDuration - The cool down duration. Default is
10m
. If the delay (cooldown) value is set too long, there could be complaints that the Horizontal Pod Autoscaler is not responsive to workload changes. However, if the delay value is set too short, the scale of the replicas set may keep thrashing as usual. - daemonset
Eviction BooleanFor Nodes - If true DaemonSet pods will be terminated from nodes. Default is
false
. - expander String
- The policy for selecting which node pool to scale. Valid values:
least-waste
,random
,priority
. For more information on these policies, see Configure auto scaling - gpu
Utilization StringThreshold - The scale-in threshold for GPU instance. Default is
0.5
. - max
Graceful NumberTermination Sec - Maximum number of seconds CA waits for pod termination when trying to scale down a node. Default is
14400
. - min
Replica NumberCount - Minimum number of replicas that a replica set or replication controller should have to allow their pods deletion in scale down. Default is
0
. - recycle
Node BooleanDeletion Enabled - Should CA delete the K8s node object when recycle node has scaled down successfully. Default is
false
. - scale
Down BooleanEnabled - Specify whether to allow the scale-in of nodes. Default is
true
. - scale
Up BooleanFrom Zero - Should CA scale up when there 0 ready nodes. Default is
true
. - scan
Interval String - The interval at which the cluster is reevaluated for scaling. Default is
30s
. - skip
Nodes BooleanWith Local Storage - If true cluster autoscaler will never delete nodes with pods with local storage, e.g. EmptyDir or HostPath. Default is
false
. - skip
Nodes BooleanWith System Pods - If true cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Default is
true
. - unneeded
Duration String - The unneeded duration. Default is
10m
. - utilization
Threshold String - The scale-in threshold. Default is
0.5
.
Outputs
All input properties are implicitly available as output properties. Additionally, the AutoscalingConfig resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing AutoscalingConfig Resource
Get an existing AutoscalingConfig resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AutoscalingConfigState, opts?: CustomResourceOptions): AutoscalingConfig
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cluster_id: Optional[str] = None,
cool_down_duration: Optional[str] = None,
daemonset_eviction_for_nodes: Optional[bool] = None,
expander: Optional[str] = None,
gpu_utilization_threshold: Optional[str] = None,
max_graceful_termination_sec: Optional[int] = None,
min_replica_count: Optional[int] = None,
recycle_node_deletion_enabled: Optional[bool] = None,
scale_down_enabled: Optional[bool] = None,
scale_up_from_zero: Optional[bool] = None,
scan_interval: Optional[str] = None,
skip_nodes_with_local_storage: Optional[bool] = None,
skip_nodes_with_system_pods: Optional[bool] = None,
unneeded_duration: Optional[str] = None,
utilization_threshold: Optional[str] = None) -> AutoscalingConfig
func GetAutoscalingConfig(ctx *Context, name string, id IDInput, state *AutoscalingConfigState, opts ...ResourceOption) (*AutoscalingConfig, error)
public static AutoscalingConfig Get(string name, Input<string> id, AutoscalingConfigState? state, CustomResourceOptions? opts = null)
public static AutoscalingConfig get(String name, Output<String> id, AutoscalingConfigState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Cluster
Id string - The id of kubernetes cluster.
- Cool
Down stringDuration - The cool down duration. Default is
10m
. If the delay (cooldown) value is set too long, there could be complaints that the Horizontal Pod Autoscaler is not responsive to workload changes. However, if the delay value is set too short, the scale of the replicas set may keep thrashing as usual. - Daemonset
Eviction boolFor Nodes - If true DaemonSet pods will be terminated from nodes. Default is
false
. - Expander string
- The policy for selecting which node pool to scale. Valid values:
least-waste
,random
,priority
. For more information on these policies, see Configure auto scaling - Gpu
Utilization stringThreshold - The scale-in threshold for GPU instance. Default is
0.5
. - Max
Graceful intTermination Sec - Maximum number of seconds CA waits for pod termination when trying to scale down a node. Default is
14400
. - Min
Replica intCount - Minimum number of replicas that a replica set or replication controller should have to allow their pods deletion in scale down. Default is
0
. - Recycle
Node boolDeletion Enabled - Should CA delete the K8s node object when recycle node has scaled down successfully. Default is
false
. - Scale
Down boolEnabled - Specify whether to allow the scale-in of nodes. Default is
true
. - Scale
Up boolFrom Zero - Should CA scale up when there 0 ready nodes. Default is
true
. - Scan
Interval string - The interval at which the cluster is reevaluated for scaling. Default is
30s
. - Skip
Nodes boolWith Local Storage - If true cluster autoscaler will never delete nodes with pods with local storage, e.g. EmptyDir or HostPath. Default is
false
. - Skip
Nodes boolWith System Pods - If true cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Default is
true
. - Unneeded
Duration string - The unneeded duration. Default is
10m
. - Utilization
Threshold string - The scale-in threshold. Default is
0.5
.
- Cluster
Id string - The id of kubernetes cluster.
- Cool
Down stringDuration - The cool down duration. Default is
10m
. If the delay (cooldown) value is set too long, there could be complaints that the Horizontal Pod Autoscaler is not responsive to workload changes. However, if the delay value is set too short, the scale of the replicas set may keep thrashing as usual. - Daemonset
Eviction boolFor Nodes - If true DaemonSet pods will be terminated from nodes. Default is
false
. - Expander string
- The policy for selecting which node pool to scale. Valid values:
least-waste
,random
,priority
. For more information on these policies, see Configure auto scaling - Gpu
Utilization stringThreshold - The scale-in threshold for GPU instance. Default is
0.5
. - Max
Graceful intTermination Sec - Maximum number of seconds CA waits for pod termination when trying to scale down a node. Default is
14400
. - Min
Replica intCount - Minimum number of replicas that a replica set or replication controller should have to allow their pods deletion in scale down. Default is
0
. - Recycle
Node boolDeletion Enabled - Should CA delete the K8s node object when recycle node has scaled down successfully. Default is
false
. - Scale
Down boolEnabled - Specify whether to allow the scale-in of nodes. Default is
true
. - Scale
Up boolFrom Zero - Should CA scale up when there 0 ready nodes. Default is
true
. - Scan
Interval string - The interval at which the cluster is reevaluated for scaling. Default is
30s
. - Skip
Nodes boolWith Local Storage - If true cluster autoscaler will never delete nodes with pods with local storage, e.g. EmptyDir or HostPath. Default is
false
. - Skip
Nodes boolWith System Pods - If true cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Default is
true
. - Unneeded
Duration string - The unneeded duration. Default is
10m
. - Utilization
Threshold string - The scale-in threshold. Default is
0.5
.
- cluster
Id String - The id of kubernetes cluster.
- cool
Down StringDuration - The cool down duration. Default is
10m
. If the delay (cooldown) value is set too long, there could be complaints that the Horizontal Pod Autoscaler is not responsive to workload changes. However, if the delay value is set too short, the scale of the replicas set may keep thrashing as usual. - daemonset
Eviction BooleanFor Nodes - If true DaemonSet pods will be terminated from nodes. Default is
false
. - expander String
- The policy for selecting which node pool to scale. Valid values:
least-waste
,random
,priority
. For more information on these policies, see Configure auto scaling - gpu
Utilization StringThreshold - The scale-in threshold for GPU instance. Default is
0.5
. - max
Graceful IntegerTermination Sec - Maximum number of seconds CA waits for pod termination when trying to scale down a node. Default is
14400
. - min
Replica IntegerCount - Minimum number of replicas that a replica set or replication controller should have to allow their pods deletion in scale down. Default is
0
. - recycle
Node BooleanDeletion Enabled - Should CA delete the K8s node object when recycle node has scaled down successfully. Default is
false
. - scale
Down BooleanEnabled - Specify whether to allow the scale-in of nodes. Default is
true
. - scale
Up BooleanFrom Zero - Should CA scale up when there 0 ready nodes. Default is
true
. - scan
Interval String - The interval at which the cluster is reevaluated for scaling. Default is
30s
. - skip
Nodes BooleanWith Local Storage - If true cluster autoscaler will never delete nodes with pods with local storage, e.g. EmptyDir or HostPath. Default is
false
. - skip
Nodes BooleanWith System Pods - If true cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Default is
true
. - unneeded
Duration String - The unneeded duration. Default is
10m
. - utilization
Threshold String - The scale-in threshold. Default is
0.5
.
- cluster
Id string - The id of kubernetes cluster.
- cool
Down stringDuration - The cool down duration. Default is
10m
. If the delay (cooldown) value is set too long, there could be complaints that the Horizontal Pod Autoscaler is not responsive to workload changes. However, if the delay value is set too short, the scale of the replicas set may keep thrashing as usual. - daemonset
Eviction booleanFor Nodes - If true DaemonSet pods will be terminated from nodes. Default is
false
. - expander string
- The policy for selecting which node pool to scale. Valid values:
least-waste
,random
,priority
. For more information on these policies, see Configure auto scaling - gpu
Utilization stringThreshold - The scale-in threshold for GPU instance. Default is
0.5
. - max
Graceful numberTermination Sec - Maximum number of seconds CA waits for pod termination when trying to scale down a node. Default is
14400
. - min
Replica numberCount - Minimum number of replicas that a replica set or replication controller should have to allow their pods deletion in scale down. Default is
0
. - recycle
Node booleanDeletion Enabled - Should CA delete the K8s node object when recycle node has scaled down successfully. Default is
false
. - scale
Down booleanEnabled - Specify whether to allow the scale-in of nodes. Default is
true
. - scale
Up booleanFrom Zero - Should CA scale up when there 0 ready nodes. Default is
true
. - scan
Interval string - The interval at which the cluster is reevaluated for scaling. Default is
30s
. - skip
Nodes booleanWith Local Storage - If true cluster autoscaler will never delete nodes with pods with local storage, e.g. EmptyDir or HostPath. Default is
false
. - skip
Nodes booleanWith System Pods - If true cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Default is
true
. - unneeded
Duration string - The unneeded duration. Default is
10m
. - utilization
Threshold string - The scale-in threshold. Default is
0.5
.
- cluster_
id str - The id of kubernetes cluster.
- cool_
down_ strduration - The cool down duration. Default is
10m
. If the delay (cooldown) value is set too long, there could be complaints that the Horizontal Pod Autoscaler is not responsive to workload changes. However, if the delay value is set too short, the scale of the replicas set may keep thrashing as usual. - daemonset_
eviction_ boolfor_ nodes - If true DaemonSet pods will be terminated from nodes. Default is
false
. - expander str
- The policy for selecting which node pool to scale. Valid values:
least-waste
,random
,priority
. For more information on these policies, see Configure auto scaling - gpu_
utilization_ strthreshold - The scale-in threshold for GPU instance. Default is
0.5
. - max_
graceful_ inttermination_ sec - Maximum number of seconds CA waits for pod termination when trying to scale down a node. Default is
14400
. - min_
replica_ intcount - Minimum number of replicas that a replica set or replication controller should have to allow their pods deletion in scale down. Default is
0
. - recycle_
node_ booldeletion_ enabled - Should CA delete the K8s node object when recycle node has scaled down successfully. Default is
false
. - scale_
down_ boolenabled - Specify whether to allow the scale-in of nodes. Default is
true
. - scale_
up_ boolfrom_ zero - Should CA scale up when there 0 ready nodes. Default is
true
. - scan_
interval str - The interval at which the cluster is reevaluated for scaling. Default is
30s
. - skip_
nodes_ boolwith_ local_ storage - If true cluster autoscaler will never delete nodes with pods with local storage, e.g. EmptyDir or HostPath. Default is
false
. - skip_
nodes_ boolwith_ system_ pods - If true cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Default is
true
. - unneeded_
duration str - The unneeded duration. Default is
10m
. - utilization_
threshold str - The scale-in threshold. Default is
0.5
.
- cluster
Id String - The id of kubernetes cluster.
- cool
Down StringDuration - The cool down duration. Default is
10m
. If the delay (cooldown) value is set too long, there could be complaints that the Horizontal Pod Autoscaler is not responsive to workload changes. However, if the delay value is set too short, the scale of the replicas set may keep thrashing as usual. - daemonset
Eviction BooleanFor Nodes - If true DaemonSet pods will be terminated from nodes. Default is
false
. - expander String
- The policy for selecting which node pool to scale. Valid values:
least-waste
,random
,priority
. For more information on these policies, see Configure auto scaling - gpu
Utilization StringThreshold - The scale-in threshold for GPU instance. Default is
0.5
. - max
Graceful NumberTermination Sec - Maximum number of seconds CA waits for pod termination when trying to scale down a node. Default is
14400
. - min
Replica NumberCount - Minimum number of replicas that a replica set or replication controller should have to allow their pods deletion in scale down. Default is
0
. - recycle
Node BooleanDeletion Enabled - Should CA delete the K8s node object when recycle node has scaled down successfully. Default is
false
. - scale
Down BooleanEnabled - Specify whether to allow the scale-in of nodes. Default is
true
. - scale
Up BooleanFrom Zero - Should CA scale up when there 0 ready nodes. Default is
true
. - scan
Interval String - The interval at which the cluster is reevaluated for scaling. Default is
30s
. - skip
Nodes BooleanWith Local Storage - If true cluster autoscaler will never delete nodes with pods with local storage, e.g. EmptyDir or HostPath. Default is
false
. - skip
Nodes BooleanWith System Pods - If true cluster autoscaler will never delete nodes with pods from kube-system (except for DaemonSet or mirror pods). Default is
true
. - unneeded
Duration String - The unneeded duration. Default is
10m
. - utilization
Threshold String - The scale-in threshold. Default is
0.5
.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.