blob: 54c0af372e117d6d6d553ee79a0fd2c607350e2b [file] [log] [blame]
Kailash Khalasiab480912017-03-20 13:14:51 -07001#xos-spa-gui tests
2
3- name: Check XOS Core Process
4 shell: ps -f | grep "bash -c cd coreapi; bash ./start_coreapi.sh"
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 Core 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 CoreContainer
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'"