tripleo-quickstart-extras/roles/overcloud-deploy/tasks/post-deploy.yml
2016-11-21 11:50:14 +01:00

15 lines
426 B
YAML

# This makes the overcloudrc file available locally. This file
# contains credentials for accessing OpenStack API services on the
# overcloud.
- name: Copy overcloudrc to ansible host
fetch:
flat: true
src: overcloudrc
dest: "{{ local_working_dir }}/overcloudrc"
- name: Run post-deploy script
shell: |
{{ working_dir }}/overcloud-deploy-post.sh \
> {{ post_deploy_log }} 2>&1
changed_when: true