Skip to content

Commit

Permalink
Set IOPS default to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Fairburn committed Oct 17, 2018
1 parent 6a22410 commit 2564f8b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion aws/container-linux/kubernetes/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ variable "disk_type" {

variable "disk_iops" {
type = "string"
default = "120"
default = "0"
description = "IOPS of the EBS volume (required for io1)"
}

Expand Down
2 changes: 1 addition & 1 deletion aws/container-linux/kubernetes/workers/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ variable "disk_type" {

variable "disk_iops" {
type = "string"
default = "120"
default = "0"
description = "IOPS of the EBS volume (required for io1)"
}

Expand Down
2 changes: 1 addition & 1 deletion aws/fedora-atomic/kubernetes/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ variable "disk_type" {

variable "disk_iops" {
type = "string"
default = "120"
default = "0"
description = "IOPS of the EBS volume (required for io1)"
}

Expand Down
2 changes: 1 addition & 1 deletion aws/fedora-atomic/kubernetes/workers/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ variable "disk_type" {

variable "disk_iops" {
type = "string"
default = "120"
default = "0"
description = "IOPS of the EBS volume (required for io1)"
}

Expand Down
2 changes: 1 addition & 1 deletion docs/atomic/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ Reference the DNS zone id with `"${aws_route53_zone.zone-for-clusters.zone_id}"`
| worker_type | EC2 instance type for workers | "t2.small" | See below |
| disk_size | Size of the EBS volume in GB | "40" | "100" |
| disk_type | Type of the EBS volume | "gp2" | standard, gp2, io1 |
| disk_iops | IOPS of the EBS volume | "120" | "400" |
| disk_iops | IOPS of the EBS volume (0 for EBS default) | "0" | "400" |
| worker_price | Spot price in USD for workers. Leave as default empty string for regular on-demand instances | "" | "0.10" |
| networking | Choice of networking provider | "calico" | "calico" or "flannel" |
| network_mtu | CNI interface MTU (calico only) | 1480 | 8981 |
Expand Down
2 changes: 1 addition & 1 deletion docs/cl/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ Reference the DNS zone id with `"${aws_route53_zone.zone-for-clusters.zone_id}"`
| os_image | AMI channel for a Container Linux derivative | coreos-stable | coreos-stable, coreos-beta, coreos-alpha, flatcar-stable, flatcar-beta, flatcar-alpha |
| disk_size | Size of the EBS volume in GB | "40" | "100" |
| disk_type | Type of the EBS volume | "gp2" | standard, gp2, io1 |
| disk_iops | IOPS of the EBS volume | "120" | "400" |
| disk_iops | IOPS of the EBS volume (0 for EBS default) | "0" | "400" |
| worker_price | Spot price in USD for workers. Leave as default empty string for regular on-demand instances | "" | "0.10" |
| controller_clc_snippets | Controller Container Linux Config snippets | [] | [example](/advanced/customization.md) |
| worker_clc_snippets | Worker Container Linux Config snippets | [] | [example](/advanced/customization.md) |
Expand Down

0 comments on commit 2564f8b

Please sign in to comment.