Adjust the list of hosts that do not use linux-system-roles/network

In addition to the cloud_aws group, we want to exclude ibiblio virthosts
as they use bonding and thats a more complex setup. Someday we should
get it working here.

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2022-01-26 14:09:43 -08:00
parent d87aeef77a
commit fbb4e4691f
2 changed files with 11 additions and 1 deletions

View file

@ -1221,3 +1221,13 @@ storinator01.rdu-cc.fedoraproject.org
# [os_proxies]
# os-proxy01.fedorainfracloud.org
# os-proxy02.fedorainfracloud.org
#
# These are hosts and groups that do not use linux-system-roles/network for configuring network
# The cloud_aws hosts have network all setup by cloud-init and/or provider.
# The ibiblio hosts are using port bonding. Someday we need to configure it via linux-sys-roles.
#
[no_linux_system_roles:children]
cloud_aws
ibiblio01.fedoraproject.org
ibiblio05.fedoraproject.org

View file

@ -1,6 +1,6 @@
---
dependencies:
- { role: linux-system-roles.network, when: "'cloud_aws' not in group_names", tags: ['linux-system-roles.network'] }
- { role: linux-system-roles.network, when: "'no_linux_system_roles' not in group_names", tags: ['linux-system-roles.network'] }
- { role: basessh }
- { role: chrony }
- { role: dnf-automatic }