You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great if we supported this from the UI driver too.
In order to implement this we should offer a new option called disable-public (includes both ipv4 & ipv6), only applicable when at least one private network is selected. This option would use the new flag implemented in the driver, called --hetzner-disable-public.
The usage of --hetzner-disable-public should also imply the usage of --hetzner-use-private-network and the association of at least one private network to the server.
Another option would be to include 2 extra checkboxes to disablePublic4 and disablePublic6 independently (associated with machine driver parameters --hetzner-disable-public-4 and --hetzner-disable-public-6.
The text was updated successfully, but these errors were encountered:
And then I also changed the base64 layout to include a section for the new checkbox:
<div class="col-md-2">
<div class="checkbox">
<label class="acc-label">{{input type="checkbox" checked=model.hetznerConfig.usePrivateNetwork}}
EEDUGON: Use private network (first private network which is attached will be used for communication)
</label>
</div>
</div>
<div class="col-md-2">
<div class="checkbox">
<label class="acc-label">{{input type="checkbox" checked=model.hetznerConfig.disablePublic}}
EEDUGON: Disable public IPv4 and IPv6 addresses (this implies "use private network" for communication).
</label>
</div>
</div>
If anyone likes the change I have no issues raising a PR, but the current github code doesn't generate a valid component.js in my case (and it looks very different than the published one as mentioned here
Recently Hetzner has added the support of servers belonging only to private networks, without any public interface, thank to the following options:
This is a great achievement for security and architectural purposes, and the driver https://github.com/JonasProgrammer/docker-machine-driver-hetzner has implemented the support for this in version 3.8.0 (see this issue for more information).
It would be great if we supported this from the UI driver too.
In order to implement this we should offer a new option called
disable-public
(includes both ipv4 & ipv6), only applicable when at least one private network is selected. This option would use the new flag implemented in the driver, called--hetzner-disable-public
.The usage of
--hetzner-disable-public
should also imply the usage of--hetzner-use-private-network
and the association of at least one private network to the server.Another option would be to include 2 extra
checkboxes
todisablePublic4
anddisablePublic6
independently (associated with machine driver parameters--hetzner-disable-public-4
and--hetzner-disable-public-6
.The text was updated successfully, but these errors were encountered: