Skip to content

Commit 85a3a07

Browse files
authored
Merge pull request #544 from stackhpc/fix-rocky-ci
Fix Rocky CI
2 parents 5eab597 + c5951ec commit 85a3a07

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

etc/kayobe/environments/ci-aio/inventory/group_vars/controllers/network-interfaces

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Controller interface on all-in-one network.
66
aio_interface: breth1
77
# Use dummy1 if it exists, otherwise the bridge will have no ports.
8-
aio_bridge_ports: "{{ ['dummy1'] if 'dummy1' in hostvars[inventory_hostname].ansible_facts else [] }}"
8+
aio_bridge_ports: "{{ ['dummy1'] if ('dummy1' in hostvars[inventory_hostname].ansible_facts) or (os_distribution == 'rocky' and os_release == '9') else [] }}"
99

1010
###############################################################################
1111
# Dummy variable to allow Ansible to accept this file.

etc/kayobe/kolla/globals.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
# non-overcloud hosts
77
enable_docker_repo: "{% raw %}{{ 'overcloud' not in group_names or ansible_facts.os_family == 'Debian' }}{% endraw %}"
88

9-
kolla_base_distro: "{% raw %}{{ ansible_facts.distribution | lower }}{% endraw %}"
10-
119
neutron_tag: yoga-20230515T150233
1210
nova_tag: yoga-20230518T105834
1311
octavia_tag: yoga-20230523T110936

0 commit comments

Comments
 (0)