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
Use Case: as an administrator I want to connect to individual nodes of a cluster to check settings, apply upgrades or debug & fix errors.
Currently I have to find out the IP address of the node to connect via SSH. I would be very convenient to have the node names and their IP addresses in the /etc/hosts so that I can just ssh blue-worker-02
As a workaround I am currently auto-filling the /etc/hosts via
npm install -g json
json -f .hetzner-kube/config.json clusters | json -a nodes | json -ag ip_address name >> /etc/hosts
This is less than ideal as I have to update the file manually. Also removing nodes is not covered.
The text was updated successfully, but these errors were encountered:
Use Case: as an administrator I want to connect to individual nodes of a cluster to check settings, apply upgrades or debug & fix errors.
Currently I have to find out the IP address of the node to connect via SSH. I would be very convenient to have the node names and their IP addresses in the /etc/hosts so that I can just
ssh blue-worker-02
As a workaround I am currently auto-filling the /etc/hosts via
This is less than ideal as I have to update the file manually. Also removing nodes is not covered.
The text was updated successfully, but these errors were encountered: