From c1d28e6f6126a9181b09e4ce241180b94577a1dd Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Tue, 7 Dec 2021 16:52:55 -0800 Subject: [PATCH] Change default disk_iops on Flatcar Linux * Same as #1073, but for Flatcar Linux on AWS as well --- CHANGES.md | 6 +++--- aws/flatcar-linux/kubernetes/variables.tf | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 59f599dc..4570b1e4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,12 +6,12 @@ Notable changes between versions. ### AWS -* Change controller node default `disk_iops` to 3000 [#1073](https://github.com/poseidon/typhoon/pull/1073) +* Change controller node default `disk_iops` to 3000 ([#1073](https://github.com/poseidon/typhoon/pull/1073)) ### Fedora CoreOS -* Fix Fedora ARM64 workers to official Fedora CoreOS AMIs [#1072](https://github.com/poseidon/typhoon/pull/1072) - * Should have been changed alongside controller AMIs in [#1038](https://github.com/poseidon/typhoon/pull/1038) +* Fix Fedora ARM64 workers to official Fedora CoreOS AMIs ([#1072](https://github.com/poseidon/typhoon/pull/1072)) + * Should have been changed alongside controller AMIs in ([#1038](https://github.com/poseidon/typhoon/pull/1038)) * Old Posidon built ARM64 AMIs have been deleted ## v1.22.4 diff --git a/aws/flatcar-linux/kubernetes/variables.tf b/aws/flatcar-linux/kubernetes/variables.tf index fa9faac1..2c091cec 100644 --- a/aws/flatcar-linux/kubernetes/variables.tf +++ b/aws/flatcar-linux/kubernetes/variables.tf @@ -66,8 +66,8 @@ variable "disk_type" { variable "disk_iops" { type = number - description = "IOPS of the EBS volume (e.g. 100)" - default = 0 + description = "IOPS of the EBS volume (e.g. 3000)" + default = 3000 } variable "worker_price" {