Vito Botta

Results 140 comments of Vito Botta

Hi, wireguard is automatically installed, see https://github.com/vitobotta/hetzner-k3s/blob/cc519dff94de48eecf6e22448864ca98627db977/lib/hetzner/infra/server.rb#L63

Ok, this is weird. I will do more testing in the weekend

Hi, sorry for the delay with this. I am having some time to work on this project now so I checked, but unfortunately I couldn't reproduce the issue. For the...

Hi, any update on this? I opened a related issue in https://github.com/mxschmitt/ui-driver-hetzner/issues/104 about this. It would be awesome if we could use the private network for communication between nodes, but...

@boris-savic HI, did you find a workaround? Thanks

I think this is the relevant line? https://github.com/JonasProgrammer/docker-machine-driver-hetzner/blob/16ecd2b85c50ba659ae5b7a8aaa330b8c088b9c9/driver.go#L353 Why does it use the private IP if the private network is enabled? It looks like changing that line to use the...

> > @boris-savic HI, did you find a workaround? Thanks > > Unfortunately I did not. OK. I am not familiar with Go to be honest but I am going...

Hi @JonasProgrammer what are the implications if we return the public IP on that line - only if ForcePublicSSH or some flag is set to true?

If the private IP is returned there, Rancher will connect to the nodes using the private IP, meaning that Rancher and all the clusters need to be in the same...

I've added a flag and am doing this: ```go func (d *Driver) GetSSHHostname() (string, error) { if d.ForcePublicSSH { return d.PublicIPAddress, nil } else { return d.GetIP() } } ```...