Change with_ loop variables syntax to ansible 2
Migrate to full variable syntax with_ loop for cloudkitty. TrivialFix Change-Id: Ibdbc17accfd96fb4ed79d8024ed152bf5696a371
This commit is contained in:
parent
99897c5438
commit
79e85865a7
@ -44,8 +44,8 @@
|
|||||||
with_together:
|
with_together:
|
||||||
- [{ name: cloudkitty_api, group: cloudkitty-api },
|
- [{ name: cloudkitty_api, group: cloudkitty-api },
|
||||||
{ name: cloudkitty_processor, group: cloudkitty-processor }]
|
{ name: cloudkitty_processor, group: cloudkitty-processor }]
|
||||||
- container_envs.results
|
- "{{ container_envs.results }}"
|
||||||
- check_results.results
|
- "{{ check_results.results }}"
|
||||||
|
|
||||||
- include: start.yml
|
- include: start.yml
|
||||||
when: remove_containers.changed
|
when: remove_containers.changed
|
||||||
@ -62,5 +62,5 @@
|
|||||||
with_together:
|
with_together:
|
||||||
- [{ name: cloudkitty_api, group: cloudkitty-api },
|
- [{ name: cloudkitty_api, group: cloudkitty-api },
|
||||||
{ name: cloudkitty_processor, group: cloudkitty-processor }]
|
{ name: cloudkitty_processor, group: cloudkitty-processor }]
|
||||||
- container_envs.results
|
- "{{ container_envs.results }}"
|
||||||
- check_results.results
|
- "{{ check_results.results }}"
|
||||||
|
Loading…
Reference in New Issue
Block a user