Fix tempest missing spaces

Apply a clear syntax adding missing spaces

TrivialFix
Change-Id: I4046ffc43d58db0b667e661aec83714bc67d8dbb
This commit is contained in:
Eduardo Gonzalez 2016-09-20 17:34:28 +02:00
parent d10015dbea
commit 6f58b12d46
1 changed files with 5 additions and 5 deletions

View File

@ -7,7 +7,7 @@
failed_when: container_state.Running == false
when: inventory_hostname in groups[item.group]
with_items:
- { name: tempest, group: tempest}
- { name: tempest, group: tempest }
- include: config.yml
@ -18,7 +18,7 @@
register: check_results
when: inventory_hostname in groups[item.group]
with_items:
- { name: tempest, group: tempest}
- { name: tempest, group: tempest }
# NOTE(jeffrey4l): when config_strategy == 'COPY_ALWAYS'
# and container env['KOLLA_CONFIG_STRATEGY'] == 'COPY_ONCE',
@ -30,7 +30,7 @@
register: container_envs
when: inventory_hostname in groups[item.group]
with_items:
- { name: tempest, group: tempest}
- { name: tempest, group: tempest }
- name: Remove the containers
kolla_docker:
@ -42,7 +42,7 @@
- item[2]['rc'] == 1
- inventory_hostname in groups[item[0]['group']]
with_together:
- [{ name: tempest, group: tempest}]
- [{ name: tempest, group: tempest }]
- "{{ container_envs.results }}"
- "{{ check_results.results }}"
@ -59,6 +59,6 @@
- item[2]['rc'] == 1
- inventory_hostname in groups[item[0]['group']]
with_together:
- [{ name: tempest, group: tempest}]
- [{ name: tempest, group: tempest }]
- "{{ container_envs.results }}"
- "{{ check_results.results }}"