b20812678b
Add devstack multinode job. This job installs nova in a single cell as "late anti-affinity [1] doesn't work in multi-cells environment. [1] : https://docs.openstack.org/nova/latest/user/cellsv2-layout.html#operations-requiring-upcalls Co-Author: tpatil <tushar.vitthal.patil@gmail.com> Co-Author: yong sheng gong <gong.yongsheng@99cloud.net> Change-Id: I56a9cf4bb553c8026eec73212a3742d5eab17420
18 lines
560 B
YAML
18 lines
560 B
YAML
- name: Print net information
|
|
shell: sudo bash -c "ip address > /opt/stack/ipaddress.txt"
|
|
|
|
- name: Collect net information
|
|
fetch:
|
|
flat: yes
|
|
dest: "{{ zuul.executor.log_root }}/{{ inventory_hostname }}/confs/devstack/ipaddress.txt"
|
|
src: "/opt/stack/ipaddress.txt"
|
|
|
|
- name: print ovs information
|
|
shell: sudo bash -c "ovs-vsctl show > /opt/stack/ovsvsctl.txt"
|
|
|
|
- name: Collect ovs information
|
|
fetch:
|
|
flat: yes
|
|
dest: "{{ zuul.executor.log_root }}/{{ inventory_hostname }}/confs/devstack/ovsvsctl.txt"
|
|
src: "/opt/stack/ovsvsctl.txt"
|