
The newer version sets the connection.autoconnect-slaves=1 config option[1]. This will ensure that slave interfaces will also reconnect after bouncing the parent. [1] https://github.com/michaelrigart/ansible-role-interfaces/releases/tag/v1.15.1 Closes-Bug: #2072340 Change-Id: I2d7a8f1368d4f0e02d199029c15c453a56582b41 (cherry picked from commit 447635ac5448e0d5d6c6f34a7e5a44f298e266aa)
42 lines
1.5 KiB
YAML
42 lines
1.5 KiB
YAML
---
|
|
- hosts: primary
|
|
environment:
|
|
KAYOBE_CONFIG_SOURCE_PATH: "{{ kayobe_config_src_dir }}"
|
|
# Don't run container deployment.
|
|
KAYOBE_OVERCLOUD_CONTAINER_IMAGE_PULL: 0
|
|
KAYOBE_OVERCLOUD_SERVICE_DEPLOY: 0
|
|
KAYOBE_OVERCLOUD_POST_CONFIGURE: 0
|
|
vars:
|
|
testinfra_venv: ~/testinfra-venv
|
|
test_path: "{{ kayobe_src_dir }}/playbooks/kayobe-overcloud-host-configure-base/tests/"
|
|
tasks:
|
|
- name: Prevent NetworkManager from managing default interface
|
|
command: 'nmcli dev set {{ ansible_facts.default_ipv4.interface }} managed no'
|
|
become: true
|
|
when: ansible_facts.os_family == 'RedHat'
|
|
|
|
- name: Ensure overcloud is deployed
|
|
shell:
|
|
cmd: "{{ kayobe_src_dir }}/dev/overcloud-deploy.sh &> {{ logs_dir }}/ansible/overcloud-deploy"
|
|
executable: /bin/bash
|
|
|
|
- name: Return artifact to Zuul
|
|
zuul_return:
|
|
data:
|
|
zuul:
|
|
artifacts:
|
|
- name: "Unit Test Report"
|
|
url: "{{ inventory_hostname }}/test-results.html"
|
|
metadata:
|
|
type: unit_test_report
|
|
|
|
- name: Run testinfra tests
|
|
command: "{{ testinfra_venv }}/bin/py.test {{ test_path }} --html={{ logs_dir }}/test-results.html --self-contained-html"
|
|
environment:
|
|
SITE_MIRROR_FQDN: "{{ zuul_site_mirror_fqdn }}"
|
|
|
|
- name: Test bouncing interfaces
|
|
shell:
|
|
cmd: "{{ kayobe_src_dir }}/dev/overcloud-test-bounce-interface.sh controllers br1 &> {{ logs_dir }}/ansible/overcloud-test-bounce-interface"
|
|
executable: /bin/bash
|