diff --git a/.github/workflows/molecule.yml b/.github/workflows/molecule.yml index b9d3db6ff..0e1f7c1c5 100644 --- a/.github/workflows/molecule.yml +++ b/.github/workflows/molecule.yml @@ -44,4 +44,4 @@ jobs: run: sudo poetry install --no-interaction --with dev - name: Run Molecule - run: sudo poetry run molecule test -s octavia + run: sudo poetry run molecule test -s ${{ matrix.scenario }} diff --git a/molecule/aio/converge.yml b/molecule/aio/converge.yml index da5088719..d6415d8d9 100644 --- a/molecule/aio/converge.yml +++ b/molecule/aio/converge.yml @@ -30,3 +30,16 @@ - name: Deploy OpenStack ansible.builtin.import_playbook: vexxhost.atmosphere.openstack + +- name: Configure networking + hosts: all + tasks: + - name: Add IP address to "br-ex" + changed_when: false + ansible.builtin.shell: + cmd: ip addr add 10.96.250.10/24 dev br-ex || true + + - name: Set "br-ex" interface to "up" + changed_when: false + ansible.builtin.shell: + cmd: ip link set br-ex up || true