Skip to content

Commit

Permalink
kubernetes-sigs#57 - manage root volume size and type
Browse files Browse the repository at this point in the history
  • Loading branch information
ozbillwang committed Jul 13, 2018
1 parent 2173bbc commit 0bc357a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ variable "workers_group_defaults" {
asg_max_size = "3" # Maximum worker capacity in the autoscaling group.
asg_min_size = "1" # Minimum worker capacity in the autoscaling group.
instance_type = "m4.large" # Size of the workers instances.
root_volume_size = "20" # root volume size of workers instances.
root_volume_type = "gp2" # root volume type of workers instances, can be 'standard', 'gp2', or 'io1'
root_iops = "0" # The amount of provisioned IOPS. This must be set with a volume_type of "io1".
key_name = "" # The key name that should be used for the instances in the autoscaling group
pre_userdata = "" # userdata to pre-append to the default userdata.
additional_userdata = "" # userdata to append to the default userdata.
Expand Down
6 changes: 3 additions & 3 deletions workers.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ resource "aws_launch_configuration" "workers" {
}

root_block_device {
volume_size = "${var.root_volume_size}"
volume_type = "${var.root_volume_type}"
iops = "${var.root_iops}"
volume_size = "${lookup(var.worker_groups[count.index], "root_volume_size", lookup(var.workers_group_defaults, "root_volume_size"))}"
volume_type = "${lookup(var.worker_groups[count.index], "root_volume_type", lookup(var.workers_group_defaults, "root_volume_type"))}"
iops = "${lookup(var.worker_groups[count.index], "root_iops", lookup(var.workers_group_defaults, "root_iops"))}"
delete_on_termination = true
}
}
Expand Down

0 comments on commit 0bc357a

Please sign in to comment.