Go to file
Kasper Juul Hermansen 29a9cb12b4
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
Update Terraform github to v6
2024-02-16 19:03:35 +00:00
.github Update hashicorp/setup-terraform action to v3 2023-10-30 11:49:12 +00:00
.images tweaked readme 2022-02-17 22:52:39 +01:00
docs clarified ssh options 2022-04-12 07:12:42 +02:00
examples/tls Remove secret from TLS example 2022-03-04 21:58:36 +01:00
kustomize Add private CIDR for calico 2022-04-30 00:11:07 +02:00
modules/host Update all dependencies 2023-09-04 12:25:23 +00:00
templates rancher install ok 2022-05-04 15:59:03 +02:00
.drone.yml Add .drone.yml 2022-10-26 16:17:12 +02:00
.gitignore added kustomization backup 2022-04-14 13:59:05 +02:00
agents.tf made use of packages_to_install to install open-iscsi for when longhorn is enabled 2022-05-04 03:05:39 +02:00
control_planes.tf made use of packages_to_install to install open-iscsi for when longhorn is enabled 2022-05-04 03:05:39 +02:00
data.tf add specific subnet for nodepool 2022-02-26 01:16:38 +07:00
init.tf rancher ok 2022-05-04 21:39:58 +02:00
kubeconfig.tf ip problem solved 2022-04-09 09:51:11 +02:00
kustomization_backup.tf added kustomization backup 2022-04-14 13:59:05 +02:00
LICENSE initial commit 2021-07-30 10:12:37 +02:00
locals.tf merged staging 2022-05-04 03:24:45 +02:00
main.tf ready to merge calico addition 2022-04-13 15:59:03 +02:00
output.tf fixed single node cluster 2022-04-12 17:35:09 +02:00
providers.tf remove empty provider blocks 2022-01-23 14:31:27 +01:00
README.md rancher ok 2022-05-04 21:39:58 +02:00
renovate.json Add renovate.json 2022-10-25 21:00:38 +00:00
terraform.tfvars.example rancher ok 2022-05-04 21:39:58 +02:00
variables.tf rancher ok 2022-05-04 21:39:58 +02:00
versions.tf Update Terraform github to v6 2024-02-16 19:03:35 +00:00

Contributors Forks Stargazers Issues MIT License


Logo

Kube-Hetzner

A highly optimized and auto-upgradable, HA-default & Load-Balanced, Kubernetes cluster powered by k3s-on-MicroOS and deployed for peanuts on Hetzner Cloud 🤑 🚀


About The Project

Hetzner Cloud is a good cloud provider that offers very affordable prices for cloud instances, with data center locations in both Europe and the US.

This project aims to create an optimal and highly optimized Kubernetes installation that is easily maintained, secure and automatic upgrades. We aimed for functionality as close as possible to GKE's auto-pilot.

To achieve this, we built it on the shoulders of giants by choosing openSUSE MicroOS as the base operating system and k3s as the Kubernetes engine.

Please note that we are not affiliates of Hetzner; this is just an open-source project striving to be an optimal solution for deploying and maintaining Kubernetes on Hetzner Cloud.

Features

  • Maintenance-free with auto-upgrade to the latest version of MicroOS and k3s.
  • Proper use of the Hetzner private network to minimize latency and remove the need for encryption.
  • Automatic HA with the default setting of three control-plane nodes and two agent nodes.
  • Super-HA: Nodepools for both control-plane and agent nodes can be in different locations.
  • Possibility to have a single node cluster with a proper ingress controller.
  • Ability to add nodes and nodepools when the cluster is running.
  • Traefik ingress controller attached to a Hetzner load balancer with proxy protocol turned on.
  • Possibility to turn Longhorn on, and optionally also turn Hetzner CSI off.
  • Ability to switch to Calico as CNI, and Cilium can also be easily added.
  • Tons of flexible configuration options to suit all needs.

It uses Terraform to deploy as it's easy to use, and Hetzner provides a great Hetzner Terraform Provider.

Product Name Screen Shot

Getting Started

Follow those simple steps, and your world's cheapest Kube cluster will be up and running.

✔️ Prerequisites

First and foremost, you need to have a Hetzner Cloud account. You can sign up for free here.

Then you'll need to have terraform, kubectl cli and hcloud the Hetzner cli. The easiest way is to use the homebrew package manager to install them (available on Linux, Mac, and Windows Linux Subsystem).

brew install terraform
brew install kubectl
brew install hcloud

💡 [Do not skip] Creating the terraform.tfvars file

  1. Create a project in your Hetzner Cloud Console, and go to Security > API Tokens of that project to grab the API key. Take note of the key!
  2. Generate a passphrase-less ed25519 SSH key pair for your cluster; take note of the respective paths of your private and public keys. Or, see our detailed SSH options.
  3. Copy terraform.tfvars.example to terraform.tfvars, and replace the values from steps 1 and 2.
  4. Make sure you have the latest Terraform version, ideally at least 1.1.0. You can check with terraform -v.
  5. (Optional) Other variables in terraform.tfvars can be customized, like the Hetzner region and the node counts and sizes.

One of the easiest ways to use this project is as a Terraform module; see the examples section or the Kube-Hetzner Terraform module page.

🎯 Installation

terraform init --upgrade
terraform apply -auto-approve

It will take around 5 minutes to complete, and then you should see a green output with the IP addresses of the nodes.

Usage

When your brand new cluster is up and running, the sky is your limit! 🎉

You can immediately kubectl into it (using the kubeconfig.yaml saved to the project's directory after the installation). By doing kubectl --kubeconfig kubeconfig.yaml, but for more convenience, either create a symlink from ~/.kube/config to kubeconfig.yaml or add an export statement to your ~/.bashrc or ~/.zshrc file, as follows (you can get the path of kubeconfig.yaml by running pwd):

export KUBECONFIG=/<path-to>/kubeconfig.yaml

Once you start with Terraform, it's best not to change the state manually in Hetzner; otherwise, you'll get an error when you try to scale up or down or even destroy the cluster.

Scaling Nodes

Two things can be scaled: the number of nodepools or the number of nodes in these nodepools. You have two lists of nodepools you can add to in terraform.tfvars, the control plane nodepool and the agent nodepool list. Combined, they cannot exceed 255 nodepools (you are extremely unlikely to reach this limit). As for the count of nodes per nodepools, if you raise your limits in Hetzner, you can have up to 64,670 nodes per nodepool (also very unlikely to need that much).

There are some limitations (to scaling down mainly) that you need to be aware of:

Once the cluster is up; you can change any nodepool count and even set it to 0 (in the case of the first control-plane nodepool, the minimum is 1); you can also rename a nodepool (if the count is to 0), but should not remove a nodepool from the list after once the cluster is up. That is due to how subnets and IPs get allocated. The only nodepools you can remove are those at the end of each list of nodepools.

However, you can freely add other nodepools at the end of the list, increasing the node count. You can also decrease the node count, but make sure you drain the node in question before; otherwise, it will leave your cluster in a bad state. For obvious reasons, the only nodepool that needs at least to have a count of 1 always is the first control-plane nodepool.

High Availability

By default, we have three control planes and three agents configured, with automatic upgrades and reboots of the nodes.

If you want to remain HA (no downtime), it's essential to keep a count of control planes nodes of at least three (two minimum to maintain quorum when one goes down for automated upgrades and reboot), see Rancher's doc on HA.

Otherwise, it's essential to turn off automatic OS upgrades (k3s can continue to update without issue) for the control-plane nodes (when two or fewer control-plane nodes) and do the maintenance yourself.

Automatic Upgrade

The Default Setting

By default, MicroOS gets upgraded automatically on each node and reboot safely via Kured installed in the cluster.

As for k3s, it also automatically upgrades thanks to Rancher's system upgrade controller. By default, it follows the k3s stable channel, but you can also change to the latest one if needed or specify a target version to upgrade to via the upgrade plan.

You can copy and modify the one in the templates for that! More on the subject in k3s upgrades.

Turning Off Automatic Upgrade

If you wish to turn off automatic MicroOS upgrades (Important if you are not launching an HA setup which requires at least 3 control-plane nodes), you need to ssh into each node and issue the following command:

systemctl --now disable transactional-update.timer

To turn off k3s upgrades, you can either remove the k3s_upgrade=true label or set it to false. This needs to happen for all the nodes too! To remove it, apply:

kubectl -n system-upgrade label node <node-name> k3s_upgrade-

Alternatively, you can disable the k3s automatic upgrade without individually editing the labels on the nodes. Instead you can just delete the two system controller upgrade plans with:

kubectl delete plan k3s-agent -n system-upgrade
kubectl delete plan k3s-server -n system-upgrade

Individual Components Upgrade

Rarely needed, but can be handy in the long run. During the installation, we automatically download a backup of the kustomization to a kustomization_backup.yaml file. You will find it next to your kubeconfig.yaml at the root of your project.

  1. First create a duplicate of that file and name it kustomization.yaml, keeping the original file intact, in case you need to restore the old config.
  2. Edit the kustomization.yaml file; you want to go to the very bottom where you have the links to the different source files; grab the latest versions for each on Github, and replace. If present, remove any local reference to traefik_config.yaml, as Traefik is updated automatically by the system upgrade controller.
  3. Apply the the updated kustomization.yaml with kubectl apply -k ./.

Examples

Ingress with TLS

Here is an example of an ingress to run an application with TLS, change the host to fit your need in examples/tls/ingress.yaml and then deploy the example:

kubectl apply -f examples/tls/.

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
  name: Nginx-ingress
  annotations:
    traefik.ingress.kubernetes.io/router.tls: "true"
    traefik.ingress.kubernetes.io/router.tls.certresolver: le
spec:
  tls:
    - hosts:
        - example.com
  rules:
    - host: example.com
      http:
        paths:
          - path: /
            pathType: Prefix
            backend:
              service:
                name: nginx-service
                port:
                  number: 80

Single-node cluster

Running a development cluster on a single node without any high availability is also possible. You need one control plane nodepool with a count of 1 and one agent nodepool with a count of 0.

In this case, we don't deploy an external load-balancer but use the default k3s service load balancer on the host itself and open up port 80 & 443 in the firewall (done automatically).

Use as Terraform module

It is easy to use Kube-Hetzner as a Terraform module. To do so:

module "kube-hetzner" {
  source  = "kube-hetzner/kube-hetzner/hcloud"

  # insert the required variables here found in terraform.tfvars.example
}
Use in Terraform cloud

To use Kube-Hetzner on Terraform cloud, use as a Terraform module as mentioned above, but also change the execution mode from remote to local.

Configure add-ons with HelmChartConfig

For instance, to customize the Rancher install, if you choose to enable it, you can create and apply the following HelmChartConfig:

apiVersion: helm.cattle.io/v1
kind: HelmChartConfig
metadata:
  name: rancher
  namespace: kube-system
spec:
  valuesContent: |-
    **values.yaml content you want to customize**    

The helm options for Rancher can be seen here https://github.com/rancher/rancher/blob/release/v2.6/chart/values.yaml.

Same goes for all add-ons, like Longhorn, Cert-manager, and Traefik.

Debugging

First and foremost, it depends, but it's always good to have a quick look into Hetzner quickly without logging in to the UI. That is where the hcloud cli comes in.

  • Activate it with hcloud context create Kube-hetzner; it will prompt for your Hetzner API token, paste that, and hit enter.
  • To check the nodes, if they are running, use hcloud server list.
  • To check the network, use hcloud network describe k3s.
  • To look at the LB, use hcloud loadbalancer describe traefik.

Then for the rest, you'll often need to login to your cluster via ssh, to do that, use:

ssh root@xxx.xxx.xxx.xxx -i ~/.ssh/id_ed25519 -o StrictHostKeyChecking=no

Then, for control-plane nodes, use journalctl -u k3s to see the k3s logs, and for agents, use journalctl -u k3s-agent instead.

Last but not least, to see when the previous reboot took place, you can use both last reboot and uptime.

Takedown

If you want to take down the cluster, you can proceed as follows:

terraform destroy -auto-approve

And if the network is slow to delete, just issue hcloud network delete k3s to speed things up!

Also, if you had a full-blown cluster in use, it would be best to delete the whole project in your Hetzner account directly as operators or deployments may create other resources during regular operation.

History

This project has tried two other OS flavors before settling on MicroOS. Fedora Server, and k3OS. The latter, k3OS, is now defunct! However, our code base for it lives on in the k3os branch. Do not hesitate to check it out, it should still work.

There is also a branch where openSUSE MicroOS came preinstalled with the k3s RPM from devel:kubic/k3s, but we moved away from that solution as the k3s version was rarely getting updates. See the microOS-k3s-rpm branch for more.

Contributing

🌱 This project currently installs openSUSE MicroOS via the Hetzner rescue mode, making things a few minutes slower. If you could take a few minutes to send a support request to Hetzner, asking them to please add openSUSE MicroOS as a default image, not just an ISO. The more requests they receive, the likelier they are to add support for it, and if they do, that will cut the deployment time by half. The official link to openSUSE MicroOS is https://get.opensuse.org/microos, and their OpenStack Cloud image has full support for Cloud-init, which would probably suit the Hetzner Ops team!

Code contributions are very much welcome.

  1. Fork the Project
  2. Create your Branch (git checkout -b AmazingFeature)
  3. Commit your Changes (`git commit -m 'Add some AmazingFeature")
  4. Push to the Branch (git push origin AmazingFeature)
  5. Open a Pull Request targetting the staging branch.

Acknowledgements

  • k-andy was the starting point for this project. It wouldn't have been possible without it.
  • Best-README-Template made writing this readme a lot easier.
  • Hetzner Cloud for providing a solid infrastructure and terraform package.
  • Hashicorp for the amazing terraform framework that makes all the magic happen.
  • Rancher for k3s, an amazing Kube distribution that is the core engine of this project.
  • openSUSE for MicroOS, which is just next level Container OS technology.