-
Notifications
You must be signed in to change notification settings - Fork 14
/
taiga.yml
66 lines (60 loc) · 1.12 KB
/
taiga.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
62
63
64
65
66
- hosts:
- taiga-front
- taiga_front
- taiga-back
- taiga_back
- taiga-events
- taiga_events
become: false
tasks:
- name: group hosts by distribution
group_by:
key: "{{ ansible_distribution | lower }}_{{ ansible_distribution_release | lower }}"
changed_when: false
tags:
- always
- hosts:
- taiga-back
become: false
tasks:
- name: map taiga-back to taiga_back
group_by:
key: 'taiga_back'
changed_when: false
gather_facts: false
tags:
- always
- hosts:
- taiga-front
become: false
tasks:
- name: map taiga-front to taiga_front
group_by:
key: 'taiga_front'
changed_when: false
gather_facts: false
tags:
- always
- hosts:
- taiga-events
become: false
tasks:
- name: map taiga-events to taiga_events
group_by:
key: 'taiga_events'
changed_when: false
gather_facts: false
tags:
- always
- hosts:
- taiga_back
roles:
- role: taiga-back
- hosts:
- taiga_events
roles:
- role: taiga-events
- hosts:
- taiga_front
roles:
- role: taiga-front