c12s-kubespray/roles/kubernetes-apps/ansible/templates/glusterfs-kubernetes-endpoint.json.j2
2016-12-06 08:59:34 +01:00

24 lines
383 B
Django/Jinja

{
"kind": "Endpoints",
"apiVersion": "v1",
"metadata": {
"name": "glusterfs"
},
"subsets": [
{% for host in groups['gfs-cluster'] %}
{
"addresses": [
{
"ip": "{{hostvars[host]['ip']}}"
}
],
"ports": [
{
"port": 1
}
]
}{%- if not loop.last %}, {% endif -%}
{% endfor %}
]
}