feat: Change EKS default version to 1.16 (#857)

This commit is contained in:
Scott Crooks
2020-05-06 17:20:28 +02:00
committed by GitHub
parent 9bfdba9fb8
commit 99f59bfcc9
5 changed files with 9 additions and 9 deletions

View File

@@ -32,7 +32,7 @@ Example worker group configuration that uses an ASG with launch configuration fo
name = "on-demand-1"
instance_type = "m4.xlarge"
asg_max_size = 1
kubelet_extra_args = "--node-labels=kubernetes.io/lifecycle=normal"
kubelet_extra_args = "--node-labels=node.kubernetes.io/lifecycle=normal"
suspended_processes = ["AZRebalance"]
},
{
@@ -40,7 +40,7 @@ Example worker group configuration that uses an ASG with launch configuration fo
spot_price = "0.199"
instance_type = "c4.xlarge"
asg_max_size = 20
kubelet_extra_args = "--node-labels=kubernetes.io/lifecycle=spot"
kubelet_extra_args = "--node-labels=node.kubernetes.io/lifecycle=spot"
suspended_processes = ["AZRebalance"]
},
{
@@ -48,7 +48,7 @@ Example worker group configuration that uses an ASG with launch configuration fo
spot_price = "0.20"
instance_type = "m4.xlarge"
asg_max_size = 20
kubelet_extra_args = "--node-labels=kubernetes.io/lifecycle=spot"
kubelet_extra_args = "--node-labels=node.kubernetes.io/lifecycle=spot"
suspended_processes = ["AZRebalance"]
}
]
@@ -77,7 +77,7 @@ Launch Template support is a recent addition to both AWS and this module. It mig
spot_instance_pools = 4
asg_max_size = 5
asg_desired_capacity = 5
kubelet_extra_args = "--node-labels=kubernetes.io/lifecycle=spot"
kubelet_extra_args = "--node-labels=node.kubernetes.io/lifecycle=spot"
public_ip = true
},
]