Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[tf] update utility node requirement #4404

Merged
merged 1 commit into from
Sep 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions terraform/aptos-node-testnet/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -164,12 +164,12 @@ variable "validator_instance_max_num" {

variable "utility_instance_type" {
description = "Instance type used for utilities"
default = "t3.medium"
default = "t3.2xlarge"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

have you checked if t3 is still the best instance type to use in this case?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

General purpose cost-per-performance, yea it seems so.

}

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

### Forge
Expand Down
2 changes: 1 addition & 1 deletion terraform/aptos-node/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ variable "helm_enable_validator" {

variable "utility_instance_type" {
description = "Instance type used for utilities"
default = "t3.medium"
default = "t3.2xlarge"
}

variable "utility_instance_num" {
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 @@ -82,7 +82,7 @@ variable "node_pool_sizes" {

variable "utility_instance_type" {
description = "Instance type used for utilities"
default = "e2-custom-4-4096"
default = "n2-standard-8"
}

variable "utility_instance_num" {
Expand Down