Need help on deployment/setup #687
-
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
|
Hi,
Hopefully others with a setup similar to yours can offer more advice. |
Beta Was this translation helpful? Give feedback.
-
|
Hi @vitobotta, much appreciated the prompt response. So in the first case, the load balancer is to "load balance" the kubectl commands, let's say towards the cluster? Otherwise, I will need to manually change the context to which master node I am issuing a command? Then I could use my bastion as a LB towards the master nodes? just a dummy idea here. Ingress perfectly clear I will check the newer API gateway and see what fits our purpose for now at least. Exposing to the internet, Cloudflare tunnels will bind me to always use CF right? not all the domains we manage are through CF unfortunatelly, and I can not avoid that 100%. Especially with the outage last week, we are trying to find way to mitigate this in the future. And again apologies if I mix up things or use wrong terms, please correct me. |
Beta Was this translation helpful? Give feedback.
-
|
just an update so far, I will try to compile everything later and perhaps a PR to update the documentation. For now at least we will try traefik to maintain (in theory at least) an easy migration for our setup. and to enable traefik features as per k3s documentaiton, we need to create a new file. In our case we want to deploy longhorn and share storage between nodes (not to use hcloud volumes), we need to include the following in additional_pre_k3s_commands: and on our cluster-config, we have this: Questions:
or we need to delete cluster and restart this?
Edit: there is a reply here about the replication of hcloud volumes noticed that late #360 |
Beta Was this translation helpful? Give feedback.

Hi,
Load balancers: don't confuse the load balancer created by hetzner-k3s with load balancers for your workloads. If you turn on the load balancer in the hetzner-k3s configuration, that load balancer is dedicated to access the Kubernetes API from clients when the cluster is in HA configuration with multiple masters. This load balancer is not intended for use with anything other than the Kubernetes API. I am clarifying this just in case since sometimes people who are starting out get confused about this load balancer. Also, one important note in the case you decide to enable this load balancer in the configuration. While using a load balancer to access the Kubernetes API is convenient (…