Sync 'validations/ceph-ansible-installed.yaml' with the new role

Closes-Bug: 1857460
Change-Id: Ib80b55cbd0d4b4dd83d8dbc9dc2afe1d6df2ede5
(cherry picked from commit 716a308323)
This commit is contained in:
Francesco Pantano 2020-01-24 16:28:14 +01:00
parent 6d3471699c
commit 1ac55cd6f9
No known key found for this signature in database
GPG Key ID: 799868C47301D458
1 changed files with 16 additions and 0 deletions

View File

@ -7,6 +7,8 @@
Prints a message if ceph-ansible isn't installed
groups:
- pre-deployment
fail_without_ceph_ansible: false
ceph_ansible_repo: "centos-ceph-nautilus"
tasks:
- name: Check if ceph-ansible is installed
command: yum list installed ceph-ansible
@ -20,3 +22,17 @@
msg: If planning to use Ceph, it is necessary to install the ceph-ansible on the undercloud
when:
- ceph_ansible_installed|failed
- ceph_ansible_installed.stdout.find('is not installed') != -1
- fail_without_ceph_ansible|default(false)|bool
- name: Get ceph-ansible repository
shell: "yum info ceph-ansible | awk '/From repo/ {print $4}'"
register: repo
changed_when: False
- name: Fail if ceph-ansible doesn't belong to the specified repo
fail:
msg: "Make sure ceph-ansible package is installed from {{ ceph_ansible_repo }}"
when:
- (repo.stdout | length == 0 or repo.stdout != "{{ ceph_ansible_repo }}")
- fail_without_ceph_ansible|default(false)|bool