-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.yml
55 lines (51 loc) · 1.05 KB
/
main.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
---
- name: "Log Repository: Elasticsearch"
hosts: elasticsearch
serial: 3
become: true
tasks:
- name: Elasticsearch Deployment
ansible.builtin.include_role:
name: elasticsearch8
tags:
- elasticsearch
- name: "Log Repository: Kibana"
hosts: kibana
serial: 3
become: true
tasks:
- name: Kibana Deployment
ansible.builtin.include_role:
name: kibana8
tags:
- kibana
- name: "Log Repository: HAProxy"
hosts: gateway
serial: 3
become: true
tasks:
- name: HAProxy Deployment
ansible.builtin.include_role:
name: haproxy
tags:
- haproxy
- name: "Log Repository: Keepalived"
hosts: gateway
serial: 3
become: true
tasks:
- name: Keepalived Deployment
ansible.builtin.include_role:
name: keepalived
tags:
- keepalived
- name: "Log Repository: Vector"
hosts: gateway
serial: 3
become: true
tasks:
- name: Vector Deployment
ansible.builtin.include_role:
name: vector
tags:
- vector