diff options
author | Zuul <zuul@review.openstack.org> | 2018-05-10 04:39:52 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2018-05-10 04:39:52 +0000 |
commit | a0ff84e0bade30e972c6c0692c379b7cfdcc3027 (patch) | |
tree | 0a4b28ae0a5691b6846b65c2a9f630dfb3940e37 /playbooks | |
parent | 46e87ce6ebcd5ed564debe5b9520369ffc6c575a (diff) | |
parent | 7d8246244db56420e8c3512f991604ffda9bcc12 (diff) | |
download | nova-a0ff84e0bade30e972c6c0692c379b7cfdcc3027.tar.gz |
Merge "Migrate tempest-dsvm-multinode-live-migration job in-tree"
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/legacy/nova-live-migration/post.yaml | 15 | ||||
-rw-r--r-- | playbooks/legacy/nova-live-migration/run.yaml | 43 |
2 files changed, 58 insertions, 0 deletions
diff --git a/playbooks/legacy/nova-live-migration/post.yaml b/playbooks/legacy/nova-live-migration/post.yaml new file mode 100644 index 0000000000..e07f5510ae --- /dev/null +++ b/playbooks/legacy/nova-live-migration/post.yaml @@ -0,0 +1,15 @@ +- hosts: primary + tasks: + + - name: Copy files from {{ ansible_user_dir }}/workspace/ on node + synchronize: + src: '{{ ansible_user_dir }}/workspace/' + dest: '{{ zuul.executor.log_root }}' + mode: pull + copy_links: true + verify_host: true + rsync_opts: + - --include=/logs/** + - --include=*/ + - --exclude=* + - --prune-empty-dirs diff --git a/playbooks/legacy/nova-live-migration/run.yaml b/playbooks/legacy/nova-live-migration/run.yaml new file mode 100644 index 0000000000..16307d8e06 --- /dev/null +++ b/playbooks/legacy/nova-live-migration/run.yaml @@ -0,0 +1,43 @@ +- hosts: primary + name: nova-live-migration + tasks: + + - name: Ensure legacy workspace directory + file: + path: '{{ ansible_user_dir }}/workspace' + state: directory + + - shell: + cmd: | + set -e + set -x + cat > clonemap.yaml << EOF + clonemap: + - name: openstack-infra/devstack-gate + dest: devstack-gate + EOF + /usr/zuul-env/bin/zuul-cloner -m clonemap.yaml --cache-dir /opt/git \ + git://git.openstack.org \ + openstack-infra/devstack-gate + executable: /bin/bash + chdir: '{{ ansible_user_dir }}/workspace' + environment: '{{ zuul | zuul_legacy_vars }}' + + - shell: + cmd: | + set -e + set -x + export PYTHONUNBUFFERED=true + export DEVSTACK_GATE_CONFIGDRIVE=0 + export DEVSTACK_GATE_TEMPEST=1 + export DEVSTACK_GATE_TEMPEST_NOTESTS=1 + export DEVSTACK_GATE_TOPOLOGY="multinode" + function post_test_hook { + /opt/stack/new/nova/nova/tests/live_migration/hooks/run_tests.sh + } + export -f post_test_hook + cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh + ./safe-devstack-vm-gate-wrap.sh + executable: /bin/bash + chdir: '{{ ansible_user_dir }}/workspace' + environment: '{{ zuul | zuul_legacy_vars }}' |