From 21ef0a45ce798f3984e542e4678fcd53d324add9 Mon Sep 17 00:00:00 2001 From: "Han Verstraete (OpenFaaS Ltd)" Date: Wed, 25 Feb 2026 10:58:47 +0100 Subject: [PATCH] Use Debian 13 for Hetzner instances Update the default OS image for Hetzner from ubuntu-22.04 to debian-13. Signed-off-by: Han Verstraete (OpenFaaS Ltd) --- controller.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/controller.go b/controller.go index 66fa9606..363daecb 100644 --- a/controller.go +++ b/controller.go @@ -866,8 +866,8 @@ func getHostConfig(c *Controller, tunnel *inletsv1alpha1.Tunnel, service *corev1 case "hetzner": host = provision.BasicHost{ Name: tunnel.Name, - OS: "ubuntu-22.04", // https://docs.hetzner.cloud/#images-get-all-images - Plan: "cx23", // https://docs.hetzner.cloud/#server-types-get-a-server-type + OS: "debian-13", // https://docs.hetzner.cloud/#images-get-all-images + Plan: "cx23", // https://docs.hetzner.cloud/#server-types-get-a-server-type Region: c.infraConfig.Region, UserData: userData, Additional: map[string]string{},