Skip to content

Commit

Permalink
mantle/kola: set c6g.xlarge default aarch64 aws instance type
Browse files Browse the repository at this point in the history
Now that we've got console=ttyS0 in the aarch64 images they can boot
on all aarch64 instance types (see [1]). The c6g.xlarge is not a bare
metal instance type and thus will boot much faster so let's go with
that.

[1] coreos/fedora-coreos-tracker#920)
  • Loading branch information
dustymabe committed Sep 6, 2021
1 parent 5ab3d70 commit e6b72c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mantle/cmd/kola/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ func syncOptionsImpl(useCosa bool) error {
case "x86_64":
kola.AWSOptions.InstanceType = "m5.large"
case "aarch64":
kola.AWSOptions.InstanceType = "a1.metal"
kola.AWSOptions.InstanceType = "c6g.xlarge"
}
fmt.Printf("Using %s instance type\n", kola.AWSOptions.InstanceType)
}
Expand Down

0 comments on commit e6b72c4

Please sign in to comment.