feat: add control plane node

This commit is contained in:
2025-12-31 11:07:40 -05:00
parent 32580ec4a5
commit 42642ae933
2 changed files with 10 additions and 3 deletions

View File

@@ -1,3 +1,9 @@
# hetzner-cluster
Create a private Kubernetes cluster on Hetzner Cloud.
Create a private Kubernetes cluster on Hetzner Cloud.
## Resources
<https://community.hetzner.com/tutorials/kubernetes-on-hetzner-with-crio-flannel-and-hetzner-balancer>
<https://community.hetzner.com/tutorials/how-to-set-up-nat-for-cloud-networks>

View File

@@ -4,8 +4,9 @@ locals {
nat-private-ip = "10.0.2.8"
servers = {
node-a = "10.0.2.9"
node-b = "10.0.2.10"
control = "10.0.2.11"
node-a = "10.0.2.9"
node-b = "10.0.2.10"
}
}