1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/tests/integration/targets/cs_common/tasks/main.yml

24 lines
538 B
YAML
Raw Normal View History

---
- name: wait for system template available
cs_template:
name: "{{ cs_common_template }}"
state: absent
cross_zones: yes
template_filter: all
register: template
check_mode: true
until: template is changed
retries: 20
delay: 5
- name: smoke test instance
cs_instance:
name: smoke-test-vm
template: "{{ cs_common_template }}"
service_offering: "{{ cs_common_service_offering }}"
zone: "{{ cs_common_zone_adv }}"
register: instance
until: instance is successful
retries: 20
delay: 5