Skip to content
Snippets Groups Projects
Commit 6f58b12d authored by Eduardo Gonzalez's avatar Eduardo Gonzalez
Browse files

Fix tempest missing spaces

Apply a clear syntax adding missing spaces

TrivialFix
Change-Id: I4046ffc43d58db0b667e661aec83714bc67d8dbb
parent d10015db
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
failed_when: container_state.Running == false failed_when: container_state.Running == false
when: inventory_hostname in groups[item.group] when: inventory_hostname in groups[item.group]
with_items: with_items:
- { name: tempest, group: tempest} - { name: tempest, group: tempest }
- include: config.yml - include: config.yml
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
register: check_results register: check_results
when: inventory_hostname in groups[item.group] when: inventory_hostname in groups[item.group]
with_items: with_items:
- { name: tempest, group: tempest} - { name: tempest, group: tempest }
# NOTE(jeffrey4l): when config_strategy == 'COPY_ALWAYS' # NOTE(jeffrey4l): when config_strategy == 'COPY_ALWAYS'
# and container env['KOLLA_CONFIG_STRATEGY'] == 'COPY_ONCE', # and container env['KOLLA_CONFIG_STRATEGY'] == 'COPY_ONCE',
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
register: container_envs register: container_envs
when: inventory_hostname in groups[item.group] when: inventory_hostname in groups[item.group]
with_items: with_items:
- { name: tempest, group: tempest} - { name: tempest, group: tempest }
- name: Remove the containers - name: Remove the containers
kolla_docker: kolla_docker:
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
- item[2]['rc'] == 1 - item[2]['rc'] == 1
- inventory_hostname in groups[item[0]['group']] - inventory_hostname in groups[item[0]['group']]
with_together: with_together:
- [{ name: tempest, group: tempest}] - [{ name: tempest, group: tempest }]
- "{{ container_envs.results }}" - "{{ container_envs.results }}"
- "{{ check_results.results }}" - "{{ check_results.results }}"
...@@ -59,6 +59,6 @@ ...@@ -59,6 +59,6 @@
- item[2]['rc'] == 1 - item[2]['rc'] == 1
- inventory_hostname in groups[item[0]['group']] - inventory_hostname in groups[item[0]['group']]
with_together: with_together:
- [{ name: tempest, group: tempest}] - [{ name: tempest, group: tempest }]
- "{{ container_envs.results }}" - "{{ container_envs.results }}"
- "{{ check_results.results }}" - "{{ check_results.results }}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment