From 2c75116f8a79256e16d7f6a7b6bdcf4671adc792 Mon Sep 17 00:00:00 2001 From: "Alex Ellis (OpenFaaS Ltd)" Date: Wed, 12 Jun 2024 12:39:48 +0100 Subject: [PATCH] Update vultr to Ubuntu 22.04 Signed-off-by: Alex Ellis (OpenFaaS Ltd) --- cmd/create.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/create.go b/cmd/create.go index b4ab1739..cbda97a4 100644 --- a/cmd/create.go +++ b/cmd/create.go @@ -591,10 +591,10 @@ func createHost(provider, name, region, zone, projectID, userData, inletsProCont // Plans: // A complete list of available OS is available using: https://api.vultr.com/v1/plans/list // 201 = 1024 MB RAM,25 GB SSD,1.00 TB BW - const ubuntu20_04_x64 = "387" + const ubuntu22_04_x64 = "1743" return &provision.BasicHost{ Name: name, - OS: ubuntu20_04_x64, + OS: ubuntu22_04_x64, Plan: "201", Region: region, UserData: userData,