Add multinode jobs
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: I56a9cf4bb553c8026eec73212a3742d5eab17420changes/70/578170/47
parent
0e8fc96570
commit
b20812678b
@ -1,8 +1,9 @@
|
||||
- hosts: all
|
||||
roles:
|
||||
- run-devstack
|
||||
- orchestrate-devstack
|
||||
- setup-default-vim
|
||||
- role: bindep
|
||||
bindep_profile: test
|
||||
bindep_dir: "{{ zuul_work_dir }}"
|
||||
- ensure-tox
|
||||
- show-net-setup
|
||||
|
@ -1,3 +1,3 @@
|
||||
- hosts: all
|
||||
- hosts: controller
|
||||
roles:
|
||||
- tox
|
||||
|
@ -0,0 +1,17 @@
|
||||
- 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"
|
Loading…
Reference in New Issue