Skip to content

Commit

Permalink
Increase max ASG for r6a nodes in dev
Browse files Browse the repository at this point in the history
Node group is used by indexer nodes and had ha max of 3
  • Loading branch information
masih committed May 18, 2023
1 parent c343ec4 commit a6bb2ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/infrastructure/dev/us-east-2/eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ module "eks" {
# lighter duty work.
dev-ue2a-r6a-xl = {
min_size = 0
max_size = 3
max_size = 5
desired_size = 1
instance_types = ["r6a.xlarge"]
subnet_ids = [data.aws_subnet.ue2a2.id]
}
dev-ue2c-r6a-xl = {
min_size = 0
max_size = 3
max_size = 5
desired_size = 1
instance_types = ["r6a.xlarge"]
subnet_ids = [data.aws_subnet.ue2c2.id]
Expand Down

0 comments on commit a6bb2ac

Please sign in to comment.