blob: c85dd59b8f956b409b39021b840ebce733d9f0d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# The infra nodes where the Ceph mon services will run
ceph-mon_hosts:
{% for host in groups.ceph_mon%}
{{host}}:
ip: {{ hostvars[host]['ansible_ssh_host'] }}
{% endfor %}
# The nodes that the Ceph OSD disks will be running on
ceph-osd_hosts:
{% for host in groups.ceph_osd%}
{{host}}:
ip: {{ hostvars[host]['ansible_ssh_host'] }}
{% endfor %}
|