summaryrefslogtreecommitdiffstats
path: root/roles/ands_openshift/templates/gfs-ep.yml.j2
blob: de3acaca412f97b45a03d30e9510a49f642bf693 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
apiVersion: v1
kind: Template
metadata:
  name: gfs
  annotations:
    descriptions: "GlusterFS endpoints & service"
    tags: glusterfs
objects:
  - apiVersion: v1
    kind: Endpoints
    metadata:
      name: gfs
    subsets:
{% for node in openshift_storage_nodes %}
      - addresses:
          - ip: {{ node }}
        ports:
          - port: 1
{% endfor %}