blob: 9fa418fb4f21cfc90ad138fac1d5ba38272f829d [file] [log] [blame]
Kailash Khalasiab480912017-03-20 13:14:51 -07001#xos-vrouter-sync tests
2
3- name: Check XOS VROUTER Synchronizer Process
4 shell: ps -f | grep "python vrouter-synchronizer.py -C /opt/xos/synchronizers/vrouter/vrouter_config"
5 register: result
6 until: result | success
7 retries: 10
8 delay: 5
9 tags:
10 - skip_ansible_lint # running a sub job
11
12- name: Get Volume Mounts on XOS VROUTER Synchronizer Container
13 shell: mount -l | grep xos_services
14 register: volumes
15 tags:
16 - skip_ansible_lint # running a sub job
17
18- name: Validate Volume Mounts on XOS VROUTER Synchronizer Container
19 assert:
20 that: "'/opt/xos_services/{{ item.name }}' in volumes.stdout|lower"
21 with_items: "{{ xos_services }}"
22 when:
23 - "'{{ item.name }}' != 'vnodlocal'"
24 - "'{{ item.name }}' != 'volt'"