summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-nfs/config.yml
blob: ce672daf56aa6203d50e2c246bc51d8f4961a985 (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: NFS Install Checkpoint Start
  hosts: oo_all_hosts
  gather_facts: false
  tasks:
  - name: Set NFS install 'In Progress'
    set_stats:
      data:
        installer_phase_nfs: "In Progress"
      aggregate: false

- name: Configure nfs
  hosts: oo_nfs_to_config
  roles:
  - role: os_firewall
  - role: openshift_storage_nfs

- name: NFS Install Checkpoint End
  hosts: oo_all_hosts
  gather_facts: false
  tasks:
  - name: Set NFS install 'Complete'
    set_stats:
      data:
        installer_phase_nfs: "Complete"
      aggregate: false