Merge "Use separate plays for Host prep steps"

This commit is contained in:
Zuul 2019-09-05 06:27:02 +00:00 committed by Gerrit Code Review
commit 9b88629d63

View File

@ -639,9 +639,10 @@ outputs:
tags:
- overcloud
- pre_deploy_steps
{%- for role in roles %}
- hosts: {{primary_role_name}}:DEPLOY_TARGET_HOST
name: Host prep steps
- hosts: {{role.name}}
name: {{role.name}} Host prep steps
gather_facts: {{ '"{{' }} gather_facts | default(false) {{ '}}"' }}
any_errors_fatal: yes
vars:
@ -656,13 +657,11 @@ outputs:
docker_puppet_process_count: DOCKER_PUPPET_PROCESS_COUNT
docker_puppet_mount_host_puppet: DOCKER_PUPPET_MOUNT_HOST_PUPPET
tasks:
{%- for role in roles %}
- import_tasks: {{role.name}}/host_prep_tasks.yaml
when: tripleo_role_name == '{{role.name}}'
{%- endfor %}
tags:
- overcloud
- host_prep_steps
{%- endfor %}
{%- for step in range(1,deploy_steps_max) %}