summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-glusterfs/config.yml
blob: d9de578f32904d4138ed10e2be23cdb0027f711d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
- name: Open firewall ports for GlusterFS nodes
  hosts: glusterfs
  tasks:
  - include_role:
      name: openshift_storage_glusterfs
      tasks_from: firewall.yml
    when:
    - openshift_storage_glusterfs_is_native | default(True) | bool

- name: Open firewall ports for GlusterFS registry nodes
  hosts: glusterfs_registry
  tasks:
  - include_role:
      name: openshift_storage_glusterfs
      tasks_from: firewall.yml
    when:
    - openshift_storage_glusterfs_registry_is_native | default(True) | bool

- name: Configure GlusterFS
  hosts: oo_first_master
  tasks:
  - name: setup glusterfs
    include_role:
      name: openshift_storage_glusterfs
    when: groups.oo_glusterfs_to_config | default([]) | count > 0