From 82b340ef1fb11dabd60f49f3f55b9f972b95e878 Mon Sep 17 00:00:00 2001 From: Barnabas Busa Date: Wed, 19 Aug 2026 13:09:00 +0200 Subject: [PATCH] feat(devnet-8): show inventory hostnames in the bootnodoor web UI Enables the new bootnodoor_ip_names_enabled toggle so the role uploads the devnet inventory to the bootnodes and bootnodoor displays inventory hostnames instead of bare IPs in its node tables. Requires ethpandaops/ansible-collection-general#578 and a bootnodoor image with ethpandaops/bootnodoor#54. --- ansible/inventories/devnet-8/group_vars/bootnode.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ansible/inventories/devnet-8/group_vars/bootnode.yaml b/ansible/inventories/devnet-8/group_vars/bootnode.yaml index 70501316..5df0cfb3 100644 --- a/ansible/inventories/devnet-8/group_vars/bootnode.yaml +++ b/ansible/inventories/devnet-8/group_vars/bootnode.yaml @@ -58,6 +58,9 @@ bootnodoor_container_volumes_extra: - "{{ eth_testnet_config_dir }}:/network-config:ro" bootnodoor_container_command_extra_args: [] +# Upload the inventory to the bootnode so the web UI can show hostnames +# instead of bare IPs (bootnodoor parses the ansible_host entries). +bootnodoor_ip_names_enabled: true bootnodoor_container_env: VIRTUAL_HOST: bootnodoor-{{ server_fqdn }} VIRTUAL_PORT: "{{ bootnodoor_ui_port | string }}"