Skip to content

Commit

Permalink
Update the OS and plan type for the Equinix Metal tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stack72 committed Feb 2, 2022
1 parent 5648bfa commit f9b388d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions equinix-metal-py-webserver/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
billing_cycle="hourly",
facilities=["ewr1"],
hostname=random_host_name.id,
operating_system="coreos_stable",
plan="baremetal_0",
operating_system="ubuntu_20_04",
plan="baremetal_1",
project_id=project.id,
ip_addresses=[{
"type": "public_ipv4",
Expand Down
4 changes: 2 additions & 2 deletions equinix-metal-ts-webserver/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ const vm = new metal.Device("vm", {
facilities: [metal.Facility.EWR1],
billingCycle: metal.BillingCycle.Hourly,
hostname: randomHostName.id,
operatingSystem: metal.OperatingSystem.CoreOSStable,
plan: metal.Plan.T1SmallX86,
operatingSystem: metal.OperatingSystem.Ubuntu2004,
plan: metal.Plan.C1SmallX86,
projectId: project.then(p => p.id),
ipAddresses: [{
type: "public_ipv4",
Expand Down

0 comments on commit f9b388d

Please sign in to comment.