blob: 19e14ab3edfde7b1c88ae8e9f8547928da4be891 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
---
- name: GlusterFS Install Checkpoint Start
hosts: all
gather_facts: false
tasks:
- name: Set GlusterFS install 'In Progress'
run_once: true
set_stats:
data:
installer_phase_glusterfs:
status: "In Progress"
start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
- 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
- include_role:
name: openshift_storage_glusterfs
tasks_from: kernel_modules.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
- include_role:
name: openshift_storage_glusterfs
tasks_from: kernel_modules.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
- name: GlusterFS Install Checkpoint End
hosts: all
gather_facts: false
tasks:
- name: Set GlusterFS install 'Complete'
run_once: true
set_stats:
data:
installer_phase_glusterfs:
status: "Complete"
end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|