mirror of
https://github.com/ysoftdevs/terraform-aws-eks.git
synced 2026-03-24 18:31:09 +01:00
feat: Change EKS default version to 1.16 (#857)
This commit is contained in:
@@ -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
|
||||
},
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user