forked from dxc-technology/ansible-scaleio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.yml
61 lines (51 loc) · 866 Bytes
/
site.yml
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
61
---
# This playbook will deploy and configure EMC ScaleIO for use with RHOSP.
- name: Prepare for install
hosts: localhost
roles:
- prep-scaleio
- name: Install Common
hosts: scaleio
tags: common
roles:
- common
- name: Configure mdm
hosts: mdm
tags: mdm
roles:
- mdm
- name: Configure tb
tags: tb
hosts: tb
roles:
- tb
- name: Configure sds
tags: sds
hosts: sds
roles:
- sds
- name: Configure callhome
tags: callhome
hosts: callhome
roles:
- callhome
- name: Configure sdc
tags: sdc
hosts: sdc
roles:
- sdc
- name: Configure Gateway
hosts: gateway
tags: gateway
roles:
- gateway
- name: Configure openstack-controllers
tags: controller
hosts: controller
roles:
- openstack-controllers
- name: Configure openstack-compute
tags: compute
hosts: compute
roles:
- openstack-compute