diff --git a/ansible/roles/tempest/tasks/do_reconfigure.yml b/ansible/roles/tempest/tasks/do_reconfigure.yml index 8e8deff53d..0aeab552f0 100644 --- a/ansible/roles/tempest/tasks/do_reconfigure.yml +++ b/ansible/roles/tempest/tasks/do_reconfigure.yml @@ -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 }}"