-
Notifications
You must be signed in to change notification settings - Fork 0
/
site.yml.sample
106 lines (94 loc) · 2.04 KB
/
site.yml.sample
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
---
# Defines deployment design and assigns role to server groups
- hosts:
- mons
- agents
- osds
- mdss
- rgws
- nfss
- restapis
- rbdmirrors
- clients
- iscsigws
- mgrs
gather_facts: false
tags:
- always
tasks:
# If we can't get python2 installed before any module is used we will fail
# so just try what we can to get it installed
- name: check for python2
stat:
path: /usr/bin/python
ignore_errors: yes
register: systempython2
- name: install python2 for Debian based systems
raw: sudo apt-get -y install python-simplejson
ignore_errors: yes
when: systempython2.stat.exists is undefined or systempython2.stat.exists == false
# Try to install python2 on Fedora > 23
- name: install python2 for Fedora
raw: sudo dnf -y install python creates=/usr/bin/python
ignore_errors: yes
when: systempython2.stat.exists is undefined or systempython2.stat.exists == false
- name: gathering facts
setup:
- name: install required packages for Fedora > 23
raw: sudo dnf -y install python2-dnf libselinux-python ntp
when: ansible_distribution == 'Fedora' and ansible_distribution_major_version|int >= 23
- hosts: mons
gather_facts: false
become: True
roles:
- ceph-mon
- hosts: agents
gather_facts: false
become: True
roles:
- ceph-agent
- hosts: osds
gather_facts: false
become: True
roles:
- ceph-osd
- hosts: mdss
gather_facts: false
become: True
roles:
- ceph-mds
- hosts: rgws
gather_facts: false
become: True
roles:
- ceph-rgw
- hosts: nfss
gather_facts: false
become: True
roles:
- ceph-nfs
- hosts: restapis
gather_facts: false
become: True
roles:
- ceph-restapi
- hosts: rbdmirrors
gather_facts: false
become: True
roles:
- ceph-rbd-mirror
- hosts: clients
gather_facts: false
become: True
roles:
- ceph-client
- hosts: iscsigws
gather_facts: false
become: True
roles:
- ceph-iscsi-gw
- hosts: mgrs
gather_facts: false
become: True
roles:
- ceph-mgr