terraform-hcloud-kube-hetzner/README.md

240 lines
10 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 11:09:48 +01:00
A highly optimized and auto-upgradable, HA-able, Kubernetes cluster powered by k3s on k3os 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
2021-12-06 00:24:18 +01:00
[Hetzner Cloud](https://hetzner.com) is a good cloud provider that offers very affordable prices for cloud instances, with data center locations in both Europe and America. The goal of this project was to create an optimal and highly optimized Kubernetes installation that is easily maintained, secure, and automatically upgrades itself. We aimed for functionality as close as possible to GKE's auto-pilot!
2021-07-30 10:12:37 +02:00
2021-12-13 14:05:16 +01:00
_Please note that we are not affiliated to Hetzner, this is just an open source project striving to be an optimal solution for deploying and maintaining Kubernetes on Hetzner Cloud._
2021-12-10 01:24:20 +01:00
2021-12-05 11:09:48 +01:00
### Features
2021-07-30 10:12:37 +02:00
2021-12-06 00:24:18 +01:00
- Lightweight and resource-efficient Kubernetes powered by [k3s](https://github.com/k3s-io/k3s) on [k3os](https://github.com/rancher/k3os) nodes.
2021-12-10 02:21:10 +01:00
- Automatic HA with the default setting of two control-plane and agents nodes.
- Add or remove as many nodes as you want while the cluster stays running (just change the number instances and run terraform apply again).
2021-12-05 11:09:48 +01:00
- (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-07-30 10:12:37 +02:00
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
2021-12-05 11:09:48 +01:00
![Product Name Screen Shot][product-screenshot]
2021-07-30 10:12:37 +02:00
<!-- GETTING STARTED -->
## Getting started
2021-12-06 00:24:18 +01:00
Follow those simple steps, and your world's cheapest 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.
2021-12-06 00:24:18 +01:00
3. Rename terraform.tfvars.example to terraform.tfvars, and replace the values from steps 1 and 2.
2021-07-30 10:12:37 +02:00
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
```
2021-12-06 00:24:18 +01:00
Of course, to get the path, you could use the `pwd` command.
2021-07-30 10:12:37 +02:00
2021-12-13 14:05:16 +01:00
### Scaling Nodes
You can scale the number of nodes up and down without any issues or even disruption! Just add or edit these variables in `terraform.tfvars` and re-apply terraform.
```tfvars
servers_num = 2
agents_num = 3
```
2021-10-05 07:35:42 +02:00
### Ingress Controller (Optional)
2021-12-06 00:24:18 +01:00
When using Kubernetes, it is ideal to have an ingress controller to expose services to the outside world. And it turns out that the Hetzner Cloud Controller allows us to automatically deploy a Hetzner Load Balancer that the ingress controller can use. You can install the Nginx ingress controller with the following command:
2021-10-05 07:35:42 +02:00
```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
```
2021-12-06 00:24:18 +01:00
_Please note that the load balancer's geographic location and instance type are editable in [values.yaml](manifests/helm/nginx/values.yaml)._
2021-10-05 07:35:42 +02:00
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-06 00:24:18 +01:00
By default, k3os and its embedded k3s instance get upgraded automatically on each node, 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-12-06 00:24:18 +01:00
If you choose 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-12-06 00:24:18 +01:00
Then you can proceed to take 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-12-06 00:24:18 +01:00
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.
2021-10-07 22:53:00 +02:00
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 -->
2021-12-10 01:10:46 +01:00
## Contributors
2021-07-30 10:12:37 +02:00
2021-12-10 01:10:46 +01:00
- Karim Naufal - [@mysticaltech](https://github.com/mysticaltech)
2021-07-30 10:12:37 +02:00
<!-- 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-09 13:03:42 +01:00
- [k3os-hetzner](https://github.com/hughobrien/k3os-hetzner) was the inspiration for the k3os installation method.
2021-12-10 01:26:04 +01:00
- [Hetzner Cloud](https://www.hetzner.com) for providing a solid infrastructure and terraform package.
2021-12-10 01:24:20 +01:00
- [Hashicorp](https://www.hashicorp.com) for the amazing terraform framework that makes all the magic happen.
- [Rancher](https://www.rancher.com) for k3s and k3os, robust and innovative technologies that are the very core engine of this project.
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/
2021-12-05 11:09:48 +01:00
[product-screenshot]: .images/kubectl-all-screenshot.png