mirror of https://github.com/ceph/ceph-ansible.git
rolling_update: remove default filter on mds group
There's no need to use the default filter on active/standby groups
because if the group doesn't exist then the play is just skipped.
Currently this generates warnings like:
[WARNING]: Could not match supplied host pattern, ignoring: |
[WARNING]: Could not match supplied host pattern, ignoring: default([])
Signed-off-by: Dimitri Savineau <dsavinea@redhat.com>
(cherry picked from commit 2ca79fcc99
)
pull/4693/head
parent
bd79b4480a
commit
8acb42dc61
|
@ -567,7 +567,7 @@
|
||||||
- name: upgrade active mds
|
- name: upgrade active mds
|
||||||
vars:
|
vars:
|
||||||
upgrade_ceph_packages: True
|
upgrade_ceph_packages: True
|
||||||
hosts: active_mdss | default([])
|
hosts: active_mdss
|
||||||
become: true
|
become: true
|
||||||
pre_tasks:
|
pre_tasks:
|
||||||
- name: prevent restart from the packaging
|
- name: prevent restart from the packaging
|
||||||
|
@ -601,7 +601,7 @@
|
||||||
- name: upgrade standbys ceph mdss cluster
|
- name: upgrade standbys ceph mdss cluster
|
||||||
vars:
|
vars:
|
||||||
upgrade_ceph_packages: True
|
upgrade_ceph_packages: True
|
||||||
hosts: standby_mdss | default([])
|
hosts: standby_mdss
|
||||||
become: True
|
become: True
|
||||||
pre_tasks:
|
pre_tasks:
|
||||||
- name: prevent restarts from the packaging
|
- name: prevent restarts from the packaging
|
||||||
|
|
Loading…
Reference in New Issue