-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.yml
More file actions
49 lines (42 loc) · 694 Bytes
/
site.yml
File metadata and controls
49 lines (42 loc) · 694 Bytes
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
# - name: Base Role
# host: all
# become: true
# roles:
# - base
# tags: base
- name: Install Docker
hosts: all
become: true
roles:
- docker
tags: docker
- name: Install Nginx
hosts: proxy
become: true
roles:
- nginx
tags: nginx
# - name: Install mongodb
# hosts: mongodb
# become: true
# roles:
# - mongodb
# tags: mongodb
# - name: Install k8s
# hosts: k8s
# become: true
# roles:
# - k8s
# tags: k8s
# - name: Install keycloak
# hosts: keycloak
# become: true
# roles:
# - keycloak
# tags: keycloak
# - name: Install supabase
# hosts: supabase
# become: true
# roles:
# - supabase
# tags: supabase