Skip to content

Commit

Permalink
[tf/gcp] update default instance to recommended n2 (aptos-labs#5312)
Browse files Browse the repository at this point in the history
  • Loading branch information
rustielin authored Oct 27, 2022
1 parent dc72c25 commit 87e2e0b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ For running an Aptos **validator node and validator fullnode** we recommend the
- c6i.8xlarge + io1/io2 EBS volume with 40K IOPS.
- **GCP**
- n2-standard-16 (if use local SSD)
- n2-standard-30 + pd-ssd with 40K IOPS.
- n2-standard-32 + pd-ssd with 40K IOPS.

### Motivations for hardware requirements

Expand Down
2 changes: 1 addition & 1 deletion terraform/aptos-node/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ variable "utility_instance_enable_taint" {

variable "validator_instance_type" {
description = "Instance type used for validator and fullnodes"
default = "c2-standard-30"
default = "n2-standard-32"
}

variable "validator_instance_num" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/fullnode/gcp/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ variable "fullnode_name" {

variable "machine_type" {
description = "Machine type for running fullnode"
default = "c2-standard-16"
default = "n2-standard-32"
}

variable "enable_backup" {
Expand Down
2 changes: 1 addition & 1 deletion terraform/modules/eks/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ variable "utility_instance_type" {

variable "fullnode_instance_type" {
description = "Instance type used for validator and fullnodes"
default = "c5.xlarge"
default = "c6i.8xlarge"
}

variable "num_fullnodes" {
Expand Down

0 comments on commit 87e2e0b

Please sign in to comment.