File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
etc/kayobe/inventory/group_vars Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 55# Controller interface on all-in-one network.
66aio_interface: "br{{ aio_bridge_ports[0] }}"
77aio_bridge_ports:
8- - "{{ 'ens2' if os_distribution == 'ubuntu' else 'eth0' }}"
8+ - "{{ 'ens2' if os_distribution == 'ubuntu' or os_distribution in ['centos', 'rocky'] and os_release == '10' else 'eth0' }}"
99
1010# Route via the seed-hypervisor to the outside world.
1111aio_gateway: 192.168.33.4
Original file line number Diff line number Diff line change 55# Controller interface on all-in-one network.
66aio_interface: "br{{ aio_bridge_ports[0] }}"
77aio_bridge_ports:
8- - "{{ 'ens2' if os_distribution == 'ubuntu' else 'eth0' }}"
8+ - "{{ 'ens2' if os_distribution == 'ubuntu' or os_distribution in ['centos', 'rocky'] and os_release == '10' else 'eth0' }}"
99
1010# Route via the seed-hypervisor to the outside world.
1111aio_gateway: 192.168.33.4
Original file line number Diff line number Diff line change 22###############################################################################
33# Network interface definitions for the seed group.
44
5- aio_interface: "{{ 'ens2' if os_distribution == 'ubuntu' else 'eth0' }}"
5+ aio_interface: "{{ 'ens2' if os_distribution == 'ubuntu' or os_distribution in ['centos', 'rocky'] and os_release == '10' else 'eth0' }}"
66
77# Route via the seed-hypervisor to the outside world.
88# FIXME: Circular reference between seed & seed-hypervisor?
You can’t perform that action at this time.
0 commit comments