Change default disk_iops on Flatcar Linux

* Same as #1073, but for Flatcar Linux on AWS as well
This commit is contained in:
Dalton Hubble 2021-12-07 16:52:55 -08:00
parent a8fd21d250
commit c1d28e6f61
2 changed files with 5 additions and 5 deletions

View File

@ -6,12 +6,12 @@ Notable changes between versions.
### AWS ### 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 ### Fedora CoreOS
* Fix Fedora ARM64 workers to official Fedora CoreOS AMIs [#1072](https://github.com/poseidon/typhoon/pull/1072) * 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) * Should have been changed alongside controller AMIs in ([#1038](https://github.com/poseidon/typhoon/pull/1038))
* Old Posidon built ARM64 AMIs have been deleted * Old Posidon built ARM64 AMIs have been deleted
## v1.22.4 ## v1.22.4

View File

@ -66,8 +66,8 @@ variable "disk_type" {
variable "disk_iops" { variable "disk_iops" {
type = number type = number
description = "IOPS of the EBS volume (e.g. 100)" description = "IOPS of the EBS volume (e.g. 3000)"
default = 0 default = 3000
} }
variable "worker_price" { variable "worker_price" {