Skip to content

Commit

Permalink
update node size to avoid insufficient cpu error
Browse files Browse the repository at this point in the history
  • Loading branch information
kay-kim committed Dec 16, 2024
1 parent 31d0fb5 commit 82b5fa7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions doc/user/content/self-managed/installation/install-on-aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,16 @@ Terraform/infrastructure practices.

node_group_ami_type = "AL2023_ARM_64_STANDARD"
node_group_instance_types = ["r6g.medium"]
node_group_desired_size = 3
node_group_min_size = 2
node_group_max_size = 5
node_group_desired_size = 2
node_group_min_size = 1
node_group_max_size = 3

db_instance_class = "db.t3.large"
db_allocated_storage = 20
db_multi_az = false

enable_monitoring = false
metrics_retention_days = 0
enable_cluster_creator_admin_permissions = true
```

Expand Down

0 comments on commit 82b5fa7

Please sign in to comment.