From e48019d4d778e9e4abe9a719f8bc119ad2ce5c2e Mon Sep 17 00:00:00 2001 From: "Han Verstraete (OpenFaaS Ltd)" Date: Wed, 25 Feb 2026 12:23:28 +0100 Subject: [PATCH] Update default OS and plan for Hetzner and DigitalOcean Update the default OS image for Hetzner from ubuntu-22.04 to debian-13. Update the default OS image for DigitalOcean from ubuntu-22-04-x64 to debian-13-x64 and the plan from s-1vcpu-1gb to s-1vcpu-512mb-10gb. Signed-off-by: Han Verstraete (OpenFaaS Ltd) --- cmd/create.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/create.go b/cmd/create.go index c4069b0..8bd86f2 100644 --- a/cmd/create.go +++ b/cmd/create.go @@ -450,8 +450,8 @@ func createHost(provider, name, region, zone, projectID, userData, inletsProCont if provider == "digitalocean" { return &provision.BasicHost{ Name: name, - OS: "ubuntu-22-04-x64", - Plan: "s-1vcpu-1gb", + OS: "debian-13-x64", + Plan: "s-1vcpu-512mb-10gb", Region: region, UserData: userData, Additional: map[string]string{}, @@ -587,7 +587,7 @@ func createHost(provider, name, region, zone, projectID, userData, inletsProCont Name: name, Region: region, Plan: "cx23", - OS: "ubuntu-22.04", + OS: "debian-13", UserData: userData, }, nil }