File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ export class ClusterAutoscaler extends cdk.Construct {
16
16
release : CLUSTER_AUTOSCALER ,
17
17
repository : 'https://kubernetes.github.io/autoscaler' ,
18
18
namespace : 'kube-system' ,
19
- version : '9.9.2 ' ,
19
+ version : '9.10.3 ' ,
20
20
wait : true ,
21
21
values : {
22
22
autoDiscovery : {
@@ -27,6 +27,7 @@ export class ClusterAutoscaler extends cdk.Construct {
27
27
create : false ,
28
28
name : CLUSTER_AUTOSCALER ,
29
29
} ,
30
+ replicaCount : 1 ,
30
31
extraArgs : {
31
32
'stderrthreshold' : 'info' ,
32
33
'v' : 2 ,
@@ -36,7 +37,7 @@ export class ClusterAutoscaler extends cdk.Construct {
36
37
'expander' : 'least-waste' ,
37
38
'balance-similar-node-groups' : true ,
38
39
'node-group-auto-discovery' : `asg:tag=k8s.io/cluster-autoscaler/enabled,k8s.io/cluster-autoscaler/${ cluster . clusterName } ` ,
39
- //TODO: enable after next release 'cordon-node-before-terminating': true,
40
+ 'cordon-node-before-terminating' : true ,
40
41
}
41
42
} ,
42
43
} ) ;
You can’t perform that action at this time.
0 commit comments