Merge "Honor --skip-deploy-identifier in common deploy tasks"

This commit is contained in:
Zuul 2018-10-12 01:00:28 +00:00 committed by Gerrit Code Review
commit 52960f30dc

View File

@ -562,8 +562,15 @@ outputs:
bootstrap_server_id: BOOTSTRAP_SERVER_ID
step: '{{step}}'
container_cli: CONTAINER_CLI
update_identifier: UPDATE_IDENTIFIER
tasks:
- name: Check if /var/lib/docker-container-startup-configs.json already exists
stat:
path: /var/lib/docker-container-startup-configs.json
register: docker_container_startup_configs_json_stat
- import_tasks: common_deploy_steps_tasks.yaml
when:
- (update_identifier != "" or not docker_container_startup_configs_json_stat.stat.exists)
tags:
- overcloud
- deploy_steps