This repository was archived by the owner on Jun 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsite.yml
More file actions
53 lines (50 loc) · 1.22 KB
/
site.yml
File metadata and controls
53 lines (50 loc) · 1.22 KB
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
# file: site.yml
- include: update_packages.yml
- include: setup_consul.yml
- include: setup_kim.yml
- include: setup_pimon.yml
- include: setup_haproxy.yml
- include: setup_radius.yml
- include: setup_gitserver.yml
- include: setup_samba.yml
- include: setup_dbserver.yml
- include: setup_owncloud.yml
- include: setup_plex.yml
- include: setup_subsonic.yml
- include: setup_transmission.yml
- include: setup_shell.yml
- include: setup_syncthing.yml
- include: setup_netflow.yml
- include: setup_stsrv.yml
- hosts: ceph
tasks:
- name: Create ceph group
group: name=ceph
- name: Create ceph user
user:
name=ceph
state=present
groups=ceph
- name: Add cep repository
yum_repository:
name: ceph-noarch
description: Ceph noarch packages
baseurl: https://download.ceph.com/rpm-{{ ceph_release }}/{{ distro }}/noarch
gpgcheck: yes
gpgkey: https://download.ceph.com/keys/release.asc
- name: Update yum repos
yum:
name=ceph-deploy
state=present
- hosts: ldap
remote_user: root
gather_facts: no
roles:
- openldap
- hosts: influxdb
remote_user: root
gather_facts: no
roles:
- common
- influxdb
- grafana