Skip to content

Commit

Permalink
update default instance type
Browse files Browse the repository at this point in the history
  • Loading branch information
leiicamundi committed Nov 19, 2024
1 parent 010212c commit 1364e2b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/rosa-hcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
| <a name="input_availability_zones_count"></a> [availability\_zones\_count](#input\_availability\_zones\_count) | The count of availability (minimum 2) zones to utilize within the specified AWS Region, where pairs of public and private subnets will be generated. Valid only when availability\_zones variable is not provided. This value should not be updated, please create a new resource instead. | `number` | `2` | no |
| <a name="input_aws_availability_zones"></a> [aws\_availability\_zones](#input\_aws\_availability\_zones) | The AWS availability zones where instances of the default worker machine pool are deployed. Leave empty for the installer to pick availability zones from the VPC `availability_zones` or `availability_zones_count` | `list(string)` | `[]` | no |
| <a name="input_cluster_name"></a> [cluster\_name](#input\_cluster\_name) | The name of the ROSA cluster to create | `string` | `"my-ocp-cluster"` | no |
| <a name="input_compute_node_instance_type"></a> [compute\_node\_instance\_type](#input\_compute\_node\_instance\_type) | The EC2 instance type to use for compute nodes | `string` | `"m5.xlarge"` | no |
| <a name="input_compute_node_instance_type"></a> [compute\_node\_instance\_type](#input\_compute\_node\_instance\_type) | The EC2 instance type to use for compute nodes | `string` | `"m7.xlarge"` | no |
| <a name="input_host_prefix"></a> [host\_prefix](#input\_host\_prefix) | The subnet mask to assign to each compute node in the cluster | `string` | `"23"` | no |
| <a name="input_htpasswd_password"></a> [htpasswd\_password](#input\_htpasswd\_password) | htpasswd password | `string` | n/a | yes |
| <a name="input_htpasswd_username"></a> [htpasswd\_username](#input\_htpasswd\_username) | htpasswd username | `string` | `"kubeadmin"` | no |
Expand Down
2 changes: 1 addition & 1 deletion modules/rosa-hcp/vars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ variable "replicas" {
variable "compute_node_instance_type" {
type = string
description = "The EC2 instance type to use for compute nodes"
default = "m5.xlarge"
default = "m7.xlarge"
}

variable "host_prefix" {
Expand Down

0 comments on commit 1364e2b

Please sign in to comment.