-
Notifications
You must be signed in to change notification settings - Fork 0
57 lines (51 loc) · 1.35 KB
/
update-homelab.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
name: Update Homelab Servers
on:
push:
branches:
- main
- overhaul
workflow_dispatch:
jobs:
deploy:
runs-on: "self-hosted"
steps:
- uses: actions/checkout@v4
- name: install ansible
run: sudo apt-get install -y ansible
- name: Run gateway playbook
uses: dawidd6/action-ansible-playbook@v2
with:
playbook: gateway.yml
directory: ./
vault_password: ${{secrets.VAULT_PASSWORD}}
requirements: requirements.yml
inventory: |
[all]
gateway
configuration: |
[defaults]
host_key_checking = False
[ssh_connections]
pipelining = true
options: |
--inventory .hosts
--verbose
- name: Run homeserver playbook
uses: dawidd6/action-ansible-playbook@v2
with:
playbook: homeserver.yml
directory: ./
vault_password: ${{secrets.VAULT_PASSWORD}}
requirements: requirements.yml
inventory: |
[all]
homeserver
configuration: |
[defaults]
host_key_checking = False
ask_sudo_pass = True
[ssh_connections]
pipelining = true
options: |
--inventory .hosts
--verbose