From 003e5f1f7f3fe264d9c62f6fd203c2383ac5f021 Mon Sep 17 00:00:00 2001 From: Engin Diri Date: Wed, 7 Jul 2021 06:10:46 +0000 Subject: [PATCH] Civo: update Ubuntu version due to deprecation of 16.04 (bionic) Signed-off-by: Engin Diri --- cmd/create.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cmd/create.go b/cmd/create.go index 4f2faa18..80225c8b 100644 --- a/cmd/create.go +++ b/cmd/create.go @@ -408,10 +408,11 @@ func createHost(provider, name, region, zone, projectID, userData, inletsPort st Additional: map[string]string{}, }, nil } else if provider == "civo" { + const civoUbuntu2004ID = "d927ad2f-5073-4ed6-b2eb-b8e61aef29a8" return &provision.BasicHost{ Name: name, - OS: "811a8dfb-8202-49ad-b1ef-1e6320b20497", - Plan: "g2.small", + OS: civoUbuntu2004ID, + Plan: "g3.xsmall", Region: region, UserData: userData, Additional: map[string]string{},