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

roachprod: add aws AZ override for c6id.24xlarge #105234

Merged
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
5 changes: 3 additions & 2 deletions pkg/roachprod/vm/aws/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -279,8 +279,9 @@ var defaultCreateZones = []string{
// not specifying an Availability Zone in your request or choosing us-east-2b, us-east-2c."
// N.B. we implicitly specify AZ to select an AMI in that zone, hence we fall back to instance-specific overrides.
var overrideDefaultCreateZones = map[string][]string{
"c6id.4xlarge": {"us-east-2c", "us-west-2b", "eu-west-2b"},
"c6id.8xlarge": {"us-east-2c", "us-west-2b", "eu-west-2b"},
"c6id.4xlarge": {"us-east-2c", "us-west-2b", "eu-west-2b"},
"c6id.8xlarge": {"us-east-2c", "us-west-2b", "eu-west-2b"},
"c6id.24xlarge": {"us-east-2b", "us-west-2b", "eu-west-2b"},
}

type Tag struct {
Expand Down