From: Dimitri Savineau Date: Wed, 20 Nov 2019 19:40:52 +0000 (-0500) Subject: rolling_update: don't enable ceph-mon unit X-Git-Tag: v3.2.37~3 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=cb0926262d9beb21f2c7746ca56a1adc6ec987c4;p=ceph-ansible.git rolling_update: don't enable ceph-mon unit On non containerized deployment the ceph-mon hostname/fqdn systemd service are stopped at the beginning of the mon upgrade. But the parameter enabled is set to true for both task so even if we're not using the fqdn then it will enabled the systemd unit based on it. Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1649617 Signed-off-by: Dimitri Savineau --- diff --git a/infrastructure-playbooks/rolling_update.yml b/infrastructure-playbooks/rolling_update.yml index 3f5c037c5..30f977254 100644 --- a/infrastructure-playbooks/rolling_update.yml +++ b/infrastructure-playbooks/rolling_update.yml @@ -105,7 +105,7 @@ systemd: name: ceph-mon@{{ ansible_hostname }} state: stopped - enabled: yes + enabled: no ignore_errors: True when: - not containerized_deployment @@ -114,7 +114,7 @@ systemd: name: ceph-mon@{{ ansible_fqdn }} state: stopped - enabled: yes + enabled: no ignore_errors: True when: - not containerized_deployment