diff --git a/chart/inlets-operator/Chart.yaml b/chart/inlets-operator/Chart.yaml index 90148835..82b71bb1 100644 --- a/chart/inlets-operator/Chart.yaml +++ b/chart/inlets-operator/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: "1.0" description: inlets-operator for Kubernetes name: inlets-operator -version: 0.17.9 +version: 0.17.8 keywords: - networking - loadbalancer diff --git a/chart/inlets-operator/values.yaml b/chart/inlets-operator/values.yaml index a5acc51a..6cc4d8cf 100644 --- a/chart/inlets-operator/values.yaml +++ b/chart/inlets-operator/values.yaml @@ -15,10 +15,10 @@ annotatedOnly: false # These two versions should match for the client and server # For the client which will run as a Deployment in Kubernetes inletsClient: - image: "ghcr.io/inlets/inlets-pro:0.9.31" + image: "ghcr.io/inlets/inlets-pro:0.9.32" # For the server which will run a binary via systemd -inletsRelease: "0.9.31" +inletsRelease: "0.9.32" #plan: diff --git a/controller.go b/controller.go index 04016e94..b252f90a 100644 --- a/controller.go +++ b/controller.go @@ -864,8 +864,8 @@ func getHostConfig(c *Controller, tunnel *inletsv1alpha1.Tunnel, service *corev1 case "hetzner": host = provision.BasicHost{ Name: tunnel.Name, - OS: "ubuntu-20.04", // https://docs.hetzner.cloud/#images-get-all-images - Plan: "cx11", // https://docs.hetzner.cloud/#server-types-get-a-server-type + OS: "ubuntu-22.04", // https://docs.hetzner.cloud/#images-get-all-images + Plan: "cx22", // https://docs.hetzner.cloud/#server-types-get-a-server-type Region: c.infraConfig.Region, UserData: userData, Additional: map[string]string{},