2018-06-25 11:23:20 +00:00
|
|
|
{
|
|
|
|
"clusters": [
|
|
|
|
{
|
|
|
|
"nodes": [
|
|
|
|
{% set nodeblocks = [] %}
|
|
|
|
{% for node in nodes %}
|
|
|
|
{% set nodeblock %}
|
|
|
|
{
|
|
|
|
"node": {
|
|
|
|
"hostnames": {
|
|
|
|
"manage": [
|
|
|
|
"{{ node }}"
|
|
|
|
],
|
|
|
|
"storage": [
|
2019-10-16 11:25:42 +00:00
|
|
|
"{{ hostvars[node].ip }}"
|
2018-06-25 11:23:20 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"zone": 1
|
|
|
|
},
|
|
|
|
"devices": [
|
|
|
|
{
|
|
|
|
"name": "{{ hostvars[node]['disk_volume_device_1'] }}",
|
|
|
|
"destroydata": false
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
{% endset %}
|
|
|
|
{% if nodeblocks.append(nodeblock) %}{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{{ nodeblocks|join(',') }}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|