From 16397570da6fe9be1688630298cb715c19eee1f1 Mon Sep 17 00:00:00 2001 From: George Angel Date: Sat, 30 Mar 2019 09:28:23 +0000 Subject: [PATCH] increase root volume size to get more iops/allow more burst Reduce the chance of applications using local disk of imapcting node and core components running on the same node --- masters.tf | 2 +- workers.tf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/masters.tf b/masters.tf index 1b94780..e79a1c5 100644 --- a/masters.tf +++ b/masters.tf @@ -67,7 +67,7 @@ resource "aws_launch_configuration" "master" { # Storage root_block_device { volume_type = "gp2" - volume_size = 50 + volume_size = 100 } } diff --git a/workers.tf b/workers.tf index 8d57516..d2c1baa 100644 --- a/workers.tf +++ b/workers.tf @@ -60,7 +60,7 @@ resource "aws_launch_configuration" "worker" { } root_block_device { - volume_size = 50 + volume_size = 100 volume_type = "gp2" } } @@ -79,7 +79,7 @@ resource "aws_launch_configuration" "worker-spot" { } root_block_device { - volume_size = 50 + volume_size = 100 volume_type = "gp2" } }