blob: 9fa418fb4f21cfc90ad138fac1d5ba38272f829d [file] [log] [blame]
#xos-vrouter-sync tests
- name: Check XOS VROUTER Synchronizer Process
shell: ps -f | grep "python vrouter-synchronizer.py -C /opt/xos/synchronizers/vrouter/vrouter_config"
register: result
until: result | success
retries: 10
delay: 5
tags:
- skip_ansible_lint # running a sub job
- name: Get Volume Mounts on XOS VROUTER Synchronizer Container
shell: mount -l | grep xos_services
register: volumes
tags:
- skip_ansible_lint # running a sub job
- name: Validate Volume Mounts on XOS VROUTER Synchronizer Container
assert:
that: "'/opt/xos_services/{{ item.name }}' in volumes.stdout|lower"
with_items: "{{ xos_services }}"
when:
- "'{{ item.name }}' != 'vnodlocal'"
- "'{{ item.name }}' != 'volt'"