mirror of https://github.com/ceph/ceph-ansible.git
commit
8925f47d76
|
@ -9,6 +9,7 @@ redhat_distro: el6 # supported distros are el6, rhel6, f18, f19, opensuse12.2, s
|
||||||
|
|
||||||
# Ceph options
|
# Ceph options
|
||||||
cephx: true
|
cephx: true
|
||||||
|
mds: false # disable mds configuration in ceph.conf
|
||||||
fsid: 4a158d27-f750-41d5-9e7f-26ce4c9d2d45
|
fsid: 4a158d27-f750-41d5-9e7f-26ce4c9d2d45
|
||||||
|
|
||||||
# Monitors options
|
# Monitors options
|
||||||
|
|
|
@ -51,8 +51,10 @@
|
||||||
public_network = {{ public_network }}
|
public_network = {{ public_network }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
|
{% if mds %}
|
||||||
[mds]
|
[mds]
|
||||||
{% for host in groups['mdss'] %}
|
{% for host in groups['mdss'] %}
|
||||||
[mds.{{ hostvars[host]['ansible_hostname'] }}]
|
[mds.{{ hostvars[host]['ansible_hostname'] }}]
|
||||||
host = {{ hostvars[host]['ansible_hostname'] }}
|
host = {{ hostvars[host]['ansible_hostname'] }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
|
Loading…
Reference in New Issue