Skip to content

Commit

Permalink
Change default disk_iops from unset to 3000
Browse files Browse the repository at this point in the history
* Since v1.21.3 switched controllers default disk type from
`gp2` to `gp3`, an iops diff has been shown (harmless, but
annoying)
* Controller nodes default to a 30GB `gp3` disk. `gp3` disks
do respect `iops` and the corresponding default is 3000
  • Loading branch information
dghubble committed Dec 7, 2021
1 parent 85252de commit 9c626c9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ Notable changes between versions.

## Latest

### AWS

* 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)
* Old Posidon built ARM64 AMIs have been deleted

## v1.22.4

* Kubernetes [v1.22.4](https://github.com/kubernetes/kubernetes/blob/master/CHANGELOG/CHANGELOG-1.22.md#v1224)
Expand Down
4 changes: 2 additions & 2 deletions aws/fedora-coreos/kubernetes/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 9c626c9

Please sign in to comment.