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

Add c6a.8xl node type on dev in prep to upgrade FDB #2080

Merged
merged 1 commit into from
Jul 3, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions deploy/infrastructure/dev/us-east-2/eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,17 @@ module "eks" {
data.aws_subnet.ue2c1.id, data.aws_subnet.ue2c2.id, data.aws_subnet.ue2c3.id,
]
}
dev-ue2-c6a-8xl = {
min_size = 0
max_size = 15
desired_size = 1
instance_types = ["c6a.8xlarge"]
subnet_ids = [
data.aws_subnet.ue2a1.id, data.aws_subnet.ue2a2.id, data.aws_subnet.ue2a3.id,
data.aws_subnet.ue2b1.id, data.aws_subnet.ue2b2.id, data.aws_subnet.ue2b3.id,
data.aws_subnet.ue2c1.id, data.aws_subnet.ue2c2.id, data.aws_subnet.ue2c3.id,
]
}

# Memory optimised node groups primarily used to run indexer nodes.
dev-ue2a-r5n-2xl = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ data:
- system:nodes
rolearn: arn:aws:iam::407967248065:role/dev-ue2c-r5n-2xl-eks-node-group
username: system:node:{{EC2PrivateDNSName}}
- groups:
- system:bootstrappers
- system:nodes
rolearn: arn:aws:iam::407967248065:role/dev-ue2-c6a-8xl-eks-node-group
username: system:node:{{EC2PrivateDNSName}}
mapUsers: |
- userarn: arn:aws:iam::407967248065:user/masih
username: masih
Expand Down