-
Notifications
You must be signed in to change notification settings - Fork 0
/
all.yml
67 lines (60 loc) · 1.19 KB
/
all.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
67
# code: language=ansible
# Playbooks for all other stuff
---
- name: Update All
hosts: all
gather_facts: true
roles:
- role: update_packages
become: true
- name: K3S
hosts: k3s
gather_facts: true
roles:
- role: k3s
become: true
- name: Install Docker and Form Docker Swarm
hosts: docker
gather_facts: true
roles:
- role: docker
become: true
- role: swarm
- name: Install qemu-guest-agent
hosts: proxmox
gather_facts: true
roles:
- role: qemu-guest-agent
become: true
- name: Restart Elastic Agent
hosts: proxmox
gather_facts: true
roles:
- role: restart-elastic-agent
become: true
- name: Install Wireguard
hosts: wireguard
gather_facts: true
roles:
- role: wireguard
become: true
- name: Install and Start Cloudflare Tunnel
hosts: tunnel_hosts
gather_facts: true
roles:
- role: docker
become: true
- role: cf_tunnel
- name: Install Tor and Setup Tor Exit Node
hosts: tor_exit
gather_facts: true
roles:
- role: tor
become: true
- name: Install and Start Minio
hosts: local_swarm_w_high
gather_facts: true
roles:
- role: docker
become: true
- role: minio