mirror of https://github.com/ceph/ceph-ansible.git
rolling_update: exclude clients from node-exporter
Sinceguits-quick-test2.8b105549
we don't install node-exporter on client nodes so we should also exclude the client node from the node-exporter upgrade. Signed-off-by: Dimitri Savineau <dsavinea@redhat.com> (cherry picked from commit94af3c87d1
)
parent
1b424ad5e9
commit
3ba27c9387
|
@ -933,7 +933,16 @@
|
|||
msgr2_migration: True
|
||||
|
||||
- name: upgrade node-exporter
|
||||
hosts: all
|
||||
hosts:
|
||||
- "{{ mon_group_name|default('mons') }}"
|
||||
- "{{ osd_group_name|default('osds') }}"
|
||||
- "{{ mds_group_name|default('mdss') }}"
|
||||
- "{{ rgw_group_name|default('rgws') }}"
|
||||
- "{{ mgr_group_name|default('mgrs') }}"
|
||||
- "{{ rbdmirror_group_name|default('rbdmirrors') }}"
|
||||
- "{{ nfs_group_name|default('nfss') }}"
|
||||
- "{{ iscsi_gw_group_name|default('iscsigws') }}"
|
||||
- "{{ monitoring_group_name|default('monitoring') }}"
|
||||
gather_facts: false
|
||||
become: true
|
||||
tasks:
|
||||
|
|
Loading…
Reference in New Issue