Skip to content

Commit

Permalink
Migrate to Ubuntu 22.04 and cx22 for Hetzner
Browse files Browse the repository at this point in the history
The older cx11 plan is being removed in Sept 2024 and Ubuntu
20.04 is out of support.

Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
  • Loading branch information
alexellis committed Jun 12, 2024
1 parent e22c7a4 commit 2957563
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion chart/inlets-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions chart/inlets-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: <The plan or size for your cloud instance>

Expand Down
4 changes: 2 additions & 2 deletions controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{},
Expand Down

0 comments on commit 2957563

Please sign in to comment.