mirror of https://github.com/ceph/ceph-ansible.git
rolling_update: restart all ceph-iscsi services
Currently only rbd-target-gw service is restarted during an update.
We also need to restart tcmu-runner and rbd-target-api services
during the ceph iscsi upgrade.
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1659611
Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
(cherry picked from commit f1048627ea
)
pull/3923/head
parent
7418999638
commit
9ff19cc604
|
@ -706,14 +706,17 @@
|
|||
# failed_when: false is here so that if we upgrade
|
||||
# from a version of ceph that does not have iscsi gws
|
||||
# then this task will not fail
|
||||
- name: stop rbd-target-gw
|
||||
- name: stop ceph iscsi services
|
||||
systemd:
|
||||
name: rbd-target-gw
|
||||
name: '{{ item }}'
|
||||
state: stopped
|
||||
enabled: yes
|
||||
failed_when: false
|
||||
when:
|
||||
- not containerized_deployment
|
||||
with_items:
|
||||
- tcmu-runner
|
||||
- rbd-target-api
|
||||
- rbd-target-gw
|
||||
when: not containerized_deployment
|
||||
|
||||
roles:
|
||||
- ceph-defaults
|
||||
|
@ -725,13 +728,16 @@
|
|||
- ceph-iscsi-gw
|
||||
|
||||
post_tasks:
|
||||
- name: start rbd-target-gw
|
||||
- name: start ceph iscsi services
|
||||
systemd:
|
||||
name: rbd-target-gw
|
||||
name: '{{ item }}'
|
||||
state: started
|
||||
enabled: yes
|
||||
when:
|
||||
- not containerized_deployment
|
||||
with_items:
|
||||
- tcmu-runner
|
||||
- rbd-target-api
|
||||
- rbd-target-gw
|
||||
when: not containerized_deployment
|
||||
|
||||
|
||||
- name: upgrade ceph client node
|
||||
|
|
Loading…
Reference in New Issue