blob: d4b5dd03d692f1f6bedf794491be1990e38857e1 [file] [log] [blame]
Andy Bavier63408b72018-01-23 16:12:07 -08001---
2# Copyright 2017-present Open Networking Foundation
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16# test-mcord-base/tasks/main.yml
17# Run tests to check that the base elements of M-CORD are present
18
19- name: Wait for networks to be synchronized
20 shell: source /opt/cord_profile/admin-openrc.sh; neutron net-list|grep '{{ item }}' > /dev/null
21 args:
22 executable: /bin/bash
23 register: result
24 until: result | success
25 retries: 10
26 delay: 60
27 with_items: "{{ test_networks }}"
28 tags:
29 - skip_ansible_lint # running a sub job
30
Andy Bavier4ff19102018-01-31 14:27:28 -070031- name: Wait for VMs to come up
32 shell: source /opt/cord_profile/admin-openrc.sh; nova list --all-tenants|grep '{{ item }}.*\(ACTIVE\|ERROR\)' > /dev/null
Andy Bavier63408b72018-01-23 16:12:07 -080033 args:
34 executable: /bin/bash
35 register: result
36 until: result | success
37 retries: 10
38 delay: 60
39 with_items: "{{ test_services }}"
40 tags:
41 - skip_ansible_lint # running a sub job
42
43- name: Delete any VMs that are in ERROR state (XOS will re-create them)
44 shell: source /opt/cord_profile/admin-openrc.sh; for vm in $(nova list --all-tenants|grep 'ERROR'|awk '{ print $2 }'); do nova delete $vm; done
45 args:
46 executable: /bin/bash
47 tags:
48 - skip_ansible_lint # running a sub job
49
50- name: Wait for VMs to come up
51 shell: source /opt/cord_profile/admin-openrc.sh; nova list --all-tenants|grep '{{ item }}.*ACTIVE' > /dev/null
52 args:
53 executable: /bin/bash
54 register: result
55 until: result | success
56 retries: 10
57 delay: 60
58 with_items: "{{ test_services }}"
59 tags:
60 - skip_ansible_lint # running a sub job
61
62- name: Verify that VMs are properly networked
63 shell: source /opt/cord_profile/admin-openrc.sh; nova list --all-tenants|grep '{{ item.vm }}.*ACTIVE.*{{ item.network }}' > /dev/null
64 args:
65 executable: /bin/bash
66 with_items: "{{ test_ports }}"
67 tags:
68 - skip_ansible_lint # running a sub job