infra-nimbus/ansible/host_vars/bootstrap-01.aws-eu-central...

28 lines
1.2 KiB
YAML
Raw Normal View History

---
swap_file_path: '/main.swap'
swap_file_size_mb: 4096
# WARNING: Since these are Eth 2 bootnodes we need to keep the keys and IPs unchanged.
2024-11-04 07:45:14 +00:00
beacon_node_netkey: '{{lookup("vault", "beacon-node/netkey", field=hostname)}}'
# Not necessary to stress test bootnodes.
beacon_node_subscribe_all: false
# These bootstrap nodes were published with these ports.
beacon_node_discovery_port: 9100
beacon_node_listening_port: 9100
2024-09-25 07:57:15 +00:00
beacon_node_metrics_port: 9200
beacon_node_rest_port: 9300
# Open Ports
open_ports_list:
nginx:
- { port: '443', comment: 'Nginx' }
2024-09-25 07:57:15 +00:00
smart-metrics:
- { port: '{{ smart_metrics_listen_port }}', comment: 'SMART Metrics', ipset: 'hq.metrics', iifname: 'wg0' }
2024-09-25 07:57:15 +00:00
beacon-node:
- { port: '{{ beacon_node_discovery_port }}', comment: 'Beacon Node libp2p', protocol: 'tcp' }
- { port: '{{ beacon_node_discovery_port }}', comment: 'Beacon Node discovery', protocol: 'udp' }
- { port: '{{ beacon_node_metrics_port }}', comment: 'Beacon Node Metrics', ipset: 'hq.metrics', iifname: 'wg0' }
- { port: '{{ beacon_node_rest_port }}', comment: 'Beacon Node REST API', ipset: '{{ env }}.{{ stage }}', iifname: 'wg0' }