ceph aliases have been introduced in stable-3.2 during the ceph
deployment. On master this has been removed but we don't handle
this removal in the upgrade from stable-3.2 to master via the
rolling_update playbook.
Also remove the task from purge-docker-cluster missing from
d9e7835
Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
remove_img
ignore_errors: true
- - name: remove ceph aliases
- file:
- path: /etc/profile.d/ceph-aliases.sh
- state: absent
-
- name: check container hosts
hosts:
serial: 1
become: True
tasks:
+ - name: remove ceph aliases
+ file:
+ path: /etc/profile.d/ceph-aliases.sh
+ state: absent
+ when:
+ - containerized_deployment
+
- name: set mon_host_count
set_fact:
mon_host_count: "{{ groups[mon_group_name] | length }}"