2016-11-13 03:28:29 +00:00
|
|
|
{
|
|
|
|
"kind": "Endpoints",
|
|
|
|
"apiVersion": "v1",
|
|
|
|
"metadata": {
|
2016-11-16 15:21:46 +00:00
|
|
|
"name": "glusterfs"
|
2016-11-13 03:28:29 +00:00
|
|
|
},
|
|
|
|
"subsets": [
|
2016-11-16 15:21:46 +00:00
|
|
|
{% for host in groups['gfs-cluster'] %}
|
2016-11-13 03:28:29 +00:00
|
|
|
{
|
|
|
|
"addresses": [
|
2016-11-16 15:21:46 +00:00
|
|
|
{
|
|
|
|
"ip": "{{hostvars[host]['ip']}}"
|
2016-11-13 03:28:29 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"ports": [
|
|
|
|
{
|
|
|
|
"port": 1
|
|
|
|
}
|
|
|
|
]
|
2016-11-16 15:21:46 +00:00
|
|
|
}{%- if not loop.last %}, {% endif -%}
|
|
|
|
{% endfor %}
|
2016-11-13 03:28:29 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|