Skip to content

Commit

Permalink
Increase volume size of launch templates
Browse files Browse the repository at this point in the history
  • Loading branch information
vladbat00 committed Jan 5, 2023
1 parent 83c222e commit 089918e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions k8s/eks_cluster/module.tf
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ module "eks" {
asg_max_size = 3
additional_security_group_ids = [aws_security_group.worker_group_mgmt_one.id]
public_ip = true
root_volume_size = 5
root_volume_size = 10

kubelet_extra_args = "--node-labels=node.kubernetes.io/lifecycle=`curl -s http://169.254.169.254/latest/meta-data/instance-life-cycle`"
},
Expand All @@ -148,7 +148,7 @@ module "eks" {
asg_max_size = 3
additional_security_group_ids = [aws_security_group.game_server_worker_group.id]
public_ip = true
root_volume_size = 5
root_volume_size = 10

tags = [
{
Expand Down Expand Up @@ -176,7 +176,7 @@ module "eks" {
instance_type = "t3a.micro"
asg_desired_capacity = 1
public_ip = true
root_volume_size = 5
root_volume_size = 10

kubelet_extra_args = "--node-labels=agones.dev/agones-system=true,node.kubernetes.io/lifecycle=`curl -s http://169.254.169.254/latest/meta-data/instance-life-cycle` --register-with-taints=agones.dev/agones-system=true:NoExecute"
},
Expand All @@ -185,7 +185,7 @@ module "eks" {
instance_type = "t3a.micro"
asg_desired_capacity = 1
public_ip = true
root_volume_size = 5
root_volume_size = 10

kubelet_extra_args = "--node-labels=agones.dev/agones-metrics=true,node.kubernetes.io/lifecycle=`curl -s http://169.254.169.254/latest/meta-data/instance-life-cycle` --register-with-taints=agones.dev/agones-metrics=true:NoExecute"
}
Expand Down

0 comments on commit 089918e

Please sign in to comment.