261732aa18
Follows the same linting configuration that was implemented first in
tripleo-quickstart-extras which makes used of pre-commit tool for
managing all linters.
This also avoids problems where a new linter release may break our
gates because pre-commit always pins versions.
Removes ansible from requirements.txt as it needs to be listed only
in ansible-requirements.txt
Change-Id: Ia229d3d58763d743bd19ad9099d7907561f3c77f
Depends-On: https://review.openstack.org/#/c/627186/
(cherry picked from commit 8ac74a8177
)
28 lines
971 B
YAML
28 lines
971 B
YAML
---
|
|
- name: upgrade ceph post ffu
|
|
shell: |
|
|
source {{ undercloud_rc }}
|
|
{{ working_dir }}/ffu_upgrade_ceph_script.sh 2>&1 {{ timestamper_cmd }} > \
|
|
{{ working_dir }}/ffu_upgrade_ceph.log
|
|
register: ffu_upgrade_ceph
|
|
ignore_errors: true
|
|
|
|
- block:
|
|
- name: print stack failures
|
|
shell: |
|
|
set -o pipefail
|
|
source {{ undercloud_rc }}
|
|
openstack stack failures list --long {{ overcloud_stack_name }} 2>&1 {{ timestamper_cmd }} | \
|
|
tee {{ working_dir}}/ffu_upgrade_ceph_failed.log
|
|
|
|
- name: print resource list
|
|
shell: |
|
|
set -o pipefail
|
|
source {{ undercloud_rc }}
|
|
openstack stack resource list --filter status=FAILED --nested-depth 5 {{ overcloud_stack_name }} \
|
|
2>&1 {{ timestamper_cmd }} | tee {{ working_dir}}/ffu_upgrade_ceph_failed_resources.log
|
|
|
|
- name: was the ffu update ceph successful.
|
|
fail: msg="FFU upgrade ceph step failed... :("
|
|
when: ffu_upgrade_ceph|failed
|