
This PS adds role which installs docker Change-Id: Icf8e33f36dfc72327255b9949f0efd9f5f5f8b55 Signed-off-by: Sreejith Punnapuzha <sreejith.punnapuzha@outlook.com>
20 lines
561 B
YAML
20 lines
561 B
YAML
---
|
|
- hosts: primary
|
|
tasks:
|
|
- name: set default roles
|
|
set_fact:
|
|
test_subject_roles_default:
|
|
- libvirt-network
|
|
- libvirt-pool
|
|
- libvirt-volume
|
|
- libvirt-domain
|
|
- redfish-emulator
|
|
- airship-libvirt-gate
|
|
- http-fileserver
|
|
- docker-install
|
|
- name: run tests against defined roles
|
|
include_tasks: "../../roles/{{ role_name }}/tests/main.yml"
|
|
with_items: "{{ test_subject_roles | default(test_subject_roles_default) }}"
|
|
loop_control:
|
|
loop_var: role_name
|