Skip to content

Commit

Permalink
fix scenario
Browse files Browse the repository at this point in the history
  • Loading branch information
mnaser committed Jan 31, 2024
1 parent 638dcfc commit 2430246
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
13 changes: 13 additions & 0 deletions molecule/aio/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2430246

Please sign in to comment.