Newer
Older
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
#!/usr/bin/env ansible-playbook
---
- import_playbook: playbooks/includes/python.yml
tags:
- always
- import_playbook: playbooks/includes/check_docker.yml
tags:
- always
- import_playbook: playbooks/includes/conf.yml
tags:
- always
- conf
- import_playbook: playbooks/includes/init.yml
tags:
- init
- import_playbook: playbooks/includes/base.yml
tags:
- base
- import_playbook: playbooks/includes/cluster.yml
tags:
- cluster
- import_playbook: playbooks/includes/postgres.yml
tags:
- postgres
- monitor
- manager
- server
- import_playbook: playbooks/includes/monitor.yml
tags:
- monitor
- import_playbook: playbooks/includes/manager.yml
tags:
- manager
- import_playbook: playbooks/includes/wowza.yml
tags:
- wowza
- import_playbook: playbooks/includes/celerity.yml
tags:
- celerity
- import_playbook: playbooks/includes/worker.yml
tags:
- worker
- import_playbook: playbooks/includes/server.yml
tags:
- server
- import_playbook: playbooks/includes/vault.yml
tags:
- vault
- import_playbook: playbooks/includes/import.yml
tags:
- import
- import_playbook: playbooks/includes/netcapture.yml
tags:
- netcapture
- import_playbook: playbooks/includes/certificates.yml
tags:
- certificates
- monitor
- manager
- server
- import_playbook: playbooks/includes/network.yml
tags:
- network
...