rolling_update: fix upgrade when using fqdn

CLusters that were deployed using 'mon_use_fqdn' have a different unit
name, so during the upgrade this must be used otherwise the upgrade will
fail, looking for a unit that does not exist.

Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1597516
Signed-off-by: Sébastien Han <seb@redhat.com>
pull/3252/head
Sébastien Han 2018-08-09 11:32:53 +02:00 committed by mergify[bot]
parent a439eb574d
commit 44d0da0dd4
1 changed files with 13 additions and 3 deletions

View File

@ -105,11 +105,21 @@
- containerized_deployment
- mon_host_count | int == 1
- name: stop ceph mon
- name: stop ceph mon - shortname
systemd:
name: ceph-mon@{{ ansible_hostname }}
state: stopped
enabled: yes
ignore_errors: True
when:
- not containerized_deployment
- name: stop ceph mon - fqdn
systemd:
name: ceph-mon@{{ ansible_fqdn }}
state: stopped
enabled: yes
ignore_errors: True
when:
- not containerized_deployment
@ -124,7 +134,7 @@
post_tasks:
- name: start ceph mon
systemd:
name: ceph-mon@{{ ansible_hostname }}
name: ceph-mon@{{ monitor_name }}
state: started
enabled: yes
when:
@ -132,7 +142,7 @@
- name: restart containerized ceph mon
systemd:
name: ceph-mon@{{ ansible_hostname }}
name: ceph-mon@{{ monitor_name }}
state: restarted
enabled: yes
daemon_reload: yes