From f9b388dfea0baf38c39cbba83dcf57e7d52df5e8 Mon Sep 17 00:00:00 2001 From: Paul Stack Date: Wed, 2 Feb 2022 23:42:22 +0000 Subject: [PATCH] Update the OS and plan type for the Equinix Metal tests --- equinix-metal-py-webserver/__main__.py | 4 ++-- equinix-metal-ts-webserver/index.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/equinix-metal-py-webserver/__main__.py b/equinix-metal-py-webserver/__main__.py index 54f44d05b..ca9cf511b 100644 --- a/equinix-metal-py-webserver/__main__.py +++ b/equinix-metal-py-webserver/__main__.py @@ -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", diff --git a/equinix-metal-ts-webserver/index.ts b/equinix-metal-ts-webserver/index.ts index 413e01877..16c34b203 100644 --- a/equinix-metal-ts-webserver/index.ts +++ b/equinix-metal-ts-webserver/index.ts @@ -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",