terraform-hcloud-kube-hetzner/README.md

228 lines
9.7 KiB
Markdown
Raw Normal View History

2021-07-30 10:12:37 +02:00
[![Contributors][contributors-shield]][contributors-url]
[![Forks][forks-shield]][forks-url]
[![Stargazers][stars-shield]][stars-url]
[![Issues][issues-shield]][issues-url]
[![MIT License][license-shield]][license-url]
[![LinkedIn][linkedin-shield]][linkedin-url]
<!-- PROJECT LOGO -->
<br />
<p align="center">
<a href="https://github.com/mysticaltech/kube-hetzner">
<img src=".images/kube-hetzner-logo.png" alt="Logo" width="112" height="112">
</a>
<h2 align="center">Kube-Hetzner</h2>
<p align="center">
2021-12-05 10:50:51 +01:00
A fully automated, highly optimized and auto-upgradable, HA-able, Kubernetes - k3s on k3os - cluster on <a href="https://hetzner.com" target="_blank">Hetzner Cloud</a> 🥳
2021-07-30 10:12:37 +02:00
</p>
<hr />
<br />
</p>
## About The Project
![Product Name Screen Shot][product-screenshot]
2021-12-05 10:50:51 +01:00
[Hetzner Cloud](https://hetzner.com) is a good cloud provider that offers very affordable prices for cloud instances. The goal of this project was to create an optimal and highly optimized Kubernetes installation, that is easy maintained, secure, and automatically upgrades itself. We aimed for functionality that was as close as possible to GKE's auto-pilot.
2021-07-30 10:12:37 +02:00
Here's what is working at the moment:
2021-12-05 10:50:51 +01:00
- Lightweight and resource-efficient Kubernetes with [k3s](https://github.com/k3s-io/k3s).
- Powered by k3OS nodes to take advantage of an auto-upgragradable and hardened OS, especially designed to run k3s. That means that both the OS and your kube cluster will stay current and up-to-date.
2021-07-30 10:12:37 +02:00
- Automatic HA by setting the required number of servers and agents nodes.
- Optional [Nginx ingress controller](https://kubernetes.github.io/ingress-nginx/) that will automatically use Hetzner's private network to allocate a Hetzner load balancer.
2021-12-05 10:50:51 +01:00
_It uses Terraform to deploy as it's easy to use, and Hetzner provides a great [Hetzner Terraform Provider](https://registry.terraform.io/providers/hetznercloud/hcloud/latest/docs)._
2021-07-30 10:12:37 +02:00
<!-- GETTING STARTED -->
## Getting started
2021-12-05 10:50:51 +01:00
Follow those simple steps and your world cheapest and coolest Kube cluster will be up and running in no time.
2021-07-30 10:12:37 +02:00
### Prerequisites
First and foremost, you need to have a Hetzner Cloud account. You can sign up for free [here](https://hetzner.com/cloud/).
2021-12-05 10:50:51 +01:00
Then you'll need you have the [terraform](https://learn.hashicorp.com/tutorials/terraform/install-cli), [helm](https://helm.sh/docs/intro/install/), and [kubectl](https://kubernetes.io/docs/tasks/tools/) cli installed. The easiest way is to use the [gofish](https://gofi.sh/#install) package manager to install them.
2021-07-30 10:12:37 +02:00
```sh
2021-12-05 10:50:51 +01:00
gofish install terraform && gofish install kubectl && gofish install helm
2021-07-30 10:12:37 +02:00
```
### Creating terraform.tfvars
1. Create a project in your Hetzner Cloud Console, and go to **Security > API Tokens** of that project to grab the API key.
2. Generate an ssh key pair for your cluster, unless you already have one that you'd like to use.
3. Rename terraform.tfvars.example to terraform.tfvars and replace the values from steps 1 and 2.
2021-10-05 07:35:42 +02:00
### Customize other variables (Optional)
2021-07-30 10:12:37 +02:00
2021-12-05 10:50:51 +01:00
The number of control plane nodes and worker nodes, the [Hetzner datacenter location](https://docs.hetzner.com/general/others/data-centers-and-connection/) (.i.e. ngb1, fsn1, hel1 ...etc.), and the [Hetzner server types](https://www.hetzner.com/cloud) (i.e. cpx31, cpx41 ...etc.) can be customized by adding the corresponding variables to your newly created terraform.tfvars file.
2021-07-30 10:12:37 +02:00
See the default values in the [variables.tf](variables.tf) file, they correspond to (you can copy-paste and customize):
```tfvars
servers_num = 2
agents_num = 2
location = "fsn1"
2021-12-05 10:50:51 +01:00
agent_server_type = "cpx21"
control_plane_server_type = "cpx11"
2021-07-30 10:12:37 +02:00
```
### Installation
```sh
terraform init
terraform apply -auto-approve
```
It will take a few minutes to complete, and then you should see a green output with the IP addresses of the nodes. Then you can immediately kubectl into it (using the kubeconfig.yaml saved to the project's directory after the install).
Just using the command `kubectl --kubeconfig kubeconfig.yaml` would work, 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:
```sh
export KUBECONFIG=/<path-to>/kubeconfig.yaml
```
To get the path, of course, you could use the `pwd` command.
2021-07-30 10:12:37 +02:00
2021-10-05 07:35:42 +02:00
### Ingress Controller (Optional)
To have a complete and useful setup, it is ideal to have an ingress controller running and it turns out that the Hetzner Cloud Controller allows us to automatically deploy a Hetzner Load Balancer that can be used by the ingress controller. We have chosen to use the Nginx ingress controller that you can install with the following command:
```sh
2021-10-05 07:38:07 +02:00
helm repo add ingress-nginx https://kubernetes.github.io/ingress-nginx
helm repo update
2021-12-05 10:50:51 +01:00
helm install --values=manifests/helm/nginx/values.yaml ingress-nginx ingress-nginx/ingress-nginx -n kube-system --kubeconfig kubeconfig.yaml
2021-10-05 07:35:42 +02:00
```
_Note that the default geographic location and instance type of the load balancer can be changed by editing the [values.yaml](manifests/helm/nginx/values.yaml) file._
2021-07-30 10:12:37 +02:00
<!-- USAGE EXAMPLES -->
## Usage
2021-10-05 07:40:16 +02:00
When the cluster is up and running, you can do whatever you wish with it. Enjoy! 🎉
2021-07-30 10:12:37 +02:00
### Useful commands
- List your nodes IPs, with either of those:
```sh
terraform outputs
hcloud server list
```
- See the Hetzner network config:
```sh
hcloud network describe k3s-net
```
- Log into one of your nodes (replace the location of your private key if needed):
```sh
2021-12-05 10:50:51 +01:00
ssh rancher@xxx.xxx.xxx.xxx -i ~/.ssh/id_ed25519 -o StrictHostKeyChecking=no
2021-07-30 10:12:37 +02:00
```
### Automatic upgrade
2021-12-05 10:50:51 +01:00
By default, k3os and its embedded k3s instance get upgraded automatically on each node in an HA and non-disruptive way, thanks to its embedded system upgrade controller. If you wish to turn that feature off, please remove the following label `k3os.io/upgrade=latest` with the following command:
2021-07-30 10:12:37 +02:00
```sh
2021-12-05 10:50:51 +01:00
kubectl label node <nodename> 'k3os.io/upgrade'- --kubeconfig kubeconfig.yaml
2021-07-30 10:12:37 +02:00
```
### Individual components upgrade
To upgrade individual components, you can use the following commands:
2021-12-05 10:50:51 +01:00
- Hetzner CCM and CSI
2021-07-30 10:12:37 +02:00
```sh
2021-12-05 10:50:51 +01:00
kubectl apply -f https://raw.githubusercontent.com/mysticaltech/kube-hetzner/master/manifests/hcloud-ccm-net.yaml --kubeconfig kubeconfig.yaml
kubectl apply -f https://raw.githubusercontent.com/hetznercloud/csi-driver/master/deploy/kubernetes/hcloud-csi.yml --kubeconfig kubeconfig.yaml
2021-07-30 10:12:37 +02:00
```
2021-12-05 10:50:51 +01:00
- (Optional, if installed) Nginx ingress controller
2021-07-30 10:12:37 +02:00
```sh
2021-10-05 06:17:10 +02:00
helm repo update
2021-12-05 10:50:51 +01:00
helm upgrade --values=manifests/helm/nginx/values.yaml ingress-nginx ingress-nginx/ingress-nginx -n kube-system --kubeconfig kubeconfig.yaml
2021-07-30 10:12:37 +02:00
```
2021-07-30 10:32:25 +02:00
## Takedown
2021-10-05 07:35:42 +02:00
If you chose to install the Nginx ingress controller, you need to delete it first to release the load balancer, as follows:
2021-07-30 10:32:25 +02:00
```sh
2021-12-05 10:50:51 +01:00
helm delete ingress-nginx -n kube-system --kubeconfig kubeconfig.yaml
2021-07-30 10:32:25 +02:00
```
2021-10-05 07:35:42 +02:00
Then you can proceed to taking down the rest of the cluster with:
2021-07-30 10:32:25 +02:00
```sh
2021-12-05 10:50:51 +01:00
kubectl delete -f https://raw.githubusercontent.com/mysticaltech/kube-hetzner/master/manifests/hcloud-ccm-net.yaml --kubeconfig kubeconfig.yaml
kubectl delete -f https://raw.githubusercontent.com/hetznercloud/csi-driver/master/deploy/kubernetes/hcloud-csi.yml --kubeconfig kubeconfig.yaml
2021-07-30 10:32:25 +02:00
terraform destroy -auto-approve
```
2021-10-07 22:53:00 +02:00
Also, if you had a full blown cluster in use, it's best do delete the whole project in your Hetzner account directly, as there may be other ressources created via operators that are not part of this project.
2021-07-30 10:12:37 +02:00
<!-- ROADMAP -->
## Roadmap
See the [open issues](https://github.com/mysticaltech/kube-hetzner/issues) for a list of proposed features (and known issues).
<!-- CONTRIBUTING -->
## Contributing
Any contributions you make are **greatly appreciated**.
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
<!-- LICENSE -->
## License
The following code is distributed as-is and under the MIT License. See [LICENSE](LICENSE) for more information.
<!-- CONTACT -->
## Contact
2021-07-30 10:18:16 +02:00
Karim Naufal - [@mysticaltech](https://twitter.com/mysticaltech) - karim.naufal@me.com
2021-07-30 10:12:37 +02:00
Project Link: [https://github.com/mysticaltech/kube-hetzner](https://github.com/mysticaltech/kube-hetzner)
<!-- ACKNOWLEDGEMENTS -->
## Acknowledgements
2021-07-30 10:47:26 +02:00
- [k-andy](https://github.com/StarpTech/k-andy) was the starting point for this project. It wouldn't have been possible without it.
- [Best-README-Template](https://github.com/othneildrew/Best-README-Template) that made writing this readme a lot easier.
2021-12-05 10:50:51 +01:00
- [k3os-hetzner])(https://github.com/hughobrien/k3os-hetzner) was the inspiration for the k3os installation method.
2021-07-30 10:12:37 +02:00
[contributors-shield]: https://img.shields.io/github/contributors/mysticaltech/kube-hetzner.svg?style=for-the-badge
[contributors-url]: https://github.com/mysticaltech/kube-hetzner/graphs/contributors
[forks-shield]: https://img.shields.io/github/forks/mysticaltech/kube-hetzner.svg?style=for-the-badge
[forks-url]: https://github.com/mysticaltech/kube-hetzner/network/members
[stars-shield]: https://img.shields.io/github/stars/mysticaltech/kube-hetzner.svg?style=for-the-badge
[stars-url]: https://github.com/mysticaltech/kube-hetzner/stargazers
[issues-shield]: https://img.shields.io/github/issues/mysticaltech/kube-hetzner.svg?style=for-the-badge
[issues-url]: https://github.com/mysticaltech/kube-hetzner/issues
[license-shield]: https://img.shields.io/github/license/mysticaltech/kube-hetzner.svg?style=for-the-badge
[license-url]: https://github.com/mysticaltech/kube-hetzner/blob/master/LICENSE.txt
[linkedin-shield]: https://img.shields.io/badge/-LinkedIn-black.svg?style=for-the-badge&logo=linkedin&colorB=555
[linkedin-url]: https://www.linkedin.com/in/karimnaufal/
[product-screenshot]: .images/kubectl-pods-screenshot.png