mirror of https://github.com/ceph/ceph-ansible.git
10 lines
387 B
YAML
10 lines
387 B
YAML
---
|
|
- name: convert grafana-server group name if exist
|
|
add_host:
|
|
name: "{{ item }}"
|
|
groups: "{{ monitoring_group_name }}"
|
|
ansible_host: "{{ hostvars[item]['ansible_host'] | default(omit) }}"
|
|
ansible_port: "{{ hostvars[item]['ansible_port'] | default(omit) }}"
|
|
with_items: "{{ groups.get((grafana_server_group_name|default('grafana-server')), []) }}"
|
|
run_once: True
|