Disable Hetzner LoadBalancer #740
-
Am I correct, that it is currently not possible to deploy a cluster with the terraform script without deploying a Hetzner loadbalancer? In my case the ingress would be sufficient for loadbalancing tasks. My workloads do not require a dedicated loadbalancer. Am I missing the benefit using a dedicated loadbalancer for a single node cluster? |
Beta Was this translation helpful? Give feedback.
Answered by
schlichtanders
Apr 21, 2023
Replies: 1 comment 4 replies
-
I am also surprised by this. I am using kubernetes ingress and am unsure what the benefit is of paying an extra hetzner loadbalancer. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found two options in the
kube.tf
so far:enable_klipper_metal_lb = "true"
, this seems to be deployed within the kubernetes itself - no extra hetzner cost are needed. Downside: new pods will also be scheduled on the control plane nodes (see this discussion which is actually not answered)use_control_plane_lb = true
, don't know why this is disabled by default and also don't know what this is doing. Anyone any idea?