From 29ae1188dcf21f91f0ba3a0f3cd80bbea7e3379f Mon Sep 17 00:00:00 2001 From: "Alex Ellis (OpenFaaS Ltd)" Date: Wed, 12 Jun 2024 12:34:35 +0100 Subject: [PATCH] Migrate to CX22 for Hetzner and ubuntu 22.04 The old cx11 plan and Ubuntu 20.04 are out of support. Signed-off-by: Alex Ellis (OpenFaaS Ltd) --- cmd/create.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/create.go b/cmd/create.go index 92f1a45a..9c6355ce 100644 --- a/cmd/create.go +++ b/cmd/create.go @@ -19,7 +19,7 @@ import ( "github.com/spf13/cobra" ) -const inletsProDefaultVersion = "0.9.31" +const inletsProDefaultVersion = "0.9.32" const inletsProControlPort = 8123 func init() { @@ -627,8 +627,8 @@ func createHost(provider, name, region, zone, projectID, userData, inletsProCont return &provision.BasicHost{ Name: name, Region: region, - Plan: "cx11", - OS: "ubuntu-20.04", + Plan: "cx22", + OS: "ubuntu-22.04", UserData: userData, }, nil }