]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
mon: fix calamari initialisation
authorSébastien Han <seb@redhat.com>
Fri, 10 Aug 2018 09:08:14 +0000 (11:08 +0200)
committerGuillaume Abrioux <gabrioux@redhat.com>
Fri, 10 Aug 2018 12:14:23 +0000 (14:14 +0200)
If calamari is already installed and ceph has been upgraded to a higher
version the initialisation will fail later. So if we detect the
calamari-server is too old compare to ceph_rhcs_version we try to update
it.

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1601755
Signed-off-by: Sébastien Han <seb@redhat.com>
roles/ceph-mon/tasks/calamari.yml

index 4e2e9e6674a1a5d0891c2e6b3436309ba36c3c48..bf42f2aa36175117d34b1efdefb4c8978bcb1747 100644 (file)
@@ -1,8 +1,17 @@
 ---
+- name: test if calamari-server is installed
+  command: rpm -q --qf "%{VERSION}\n" calamari-server
+  args:
+    warn: no
+  ignore_errors: true
+  check_mode: no
+  changed_when: false
+  register: calamari_server_rpm_state
+
 - name: install calamari server
   package:
     name: calamari-server
-    state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
+    state: "{{ 'latest' if (calamari_server_rpm_state.stdout.split('.')[0] is version(ceph_rhcs_version, '<') and not calamari_server_rpm_state.failed) else (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
   tags:
     - package-install