-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
262 lines (236 loc) · 6.65 KB
/
.drone.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
---
kind: pipeline
type: docker
name: gitleaks
trigger:
branch:
- main
event:
- push
steps:
- name: gitleaks-check
image: ghcr.io/gitleaks/gitleaks:latest
commands:
- gitleaks detect --source ./
- gitleaks detect --no-git --source ./
- name: send-notification
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: Drone
message: "🚨 Gitleaks issue 🚨"
when:
status:
- failure
---
kind: pipeline
type: docker
name: manage-unraid-icons
depends_on:
- gitleaks
trigger:
branch:
- main
event:
- push
paths:
include:
- .drone.yml
- unraid-homelab/icons/**
volumes:
- name: appdata
host:
path: /mnt/user/appdata/
steps:
- name: sync-icons
image: alpine:edge
volumes:
- name: appdata
path: /appdata
commands:
- apk update && apk add rsync
- mkdir -p /appdata/icons/
- rsync -rv --delete --delete-excluded unraid-homelab/icons/ /appdata/icons/
- chown -R 1000:1000 /appdata/icons
- find /appdata/icons -type d -exec chmod 0755 {} \;
- find /appdata/icons -type f -exec chmod 0644 {} \;
when:
paths:
include:
- unraid-homelab/icons/**
- name: send-notification
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: Drone
message: "❌ Failed to synchronise unraid docker icons folder 📷"
when:
status:
- failure
---
kind: pipeline
type: docker
name: check-and-deploy
depends_on:
- gitleaks
trigger:
branch:
- main
event:
- push
paths:
include:
- .drone.yml
- unraid-homelab/**
exclude:
- unraid-homelab/icons
workspace:
path: /drone/src
volumes:
- name: appdata
host:
path: /mnt/user/appdata/
- name: dockersock
host:
path: /var/run/docker.sock
steps:
- name: compose-config-check
image: alpine:edge
volumes:
- name: dockersock
path: /var/run/docker.sock
environment:
SOPS_AGE_KEY:
from_secret: age-key
commands:
- apk update && apk add docker-compose sops
- cd unraid-homelab/
- sops exec-env secrets.encoded.env 'docker-compose -f docker-compose.yaml config' > /dev/null
when:
paths:
include:
- unraid-homelab/**
- name: move-recyclarr-config
image: alpine:edge
volumes:
- name: appdata
path: /appdata
environment:
SOPS_AGE_KEY:
from_secret: age-key
commands:
- apk update && apk add sops envsubst
- cd unraid-homelab/ && mkdir -p /appdata/recyclarr/
- sops exec-env secrets.encoded.env 'cat ./media/recyclarr/recyclarr.yaml | envsubst' > /appdata/recyclarr/recyclarr.yaml
- echo "recyclarr" >> restart.containers
when:
paths:
include:
- unraid-homelab/**/recyclarr/recyclarr.yaml
depends_on:
- compose-config-check
- name: move-authelia-config
image: alpine:edge
volumes:
- name: appdata
path: /appdata
environment:
SOPS_AGE_KEY:
from_secret: age-key
commands:
- apk update && apk add sops envsubst
- cd unraid-homelab/ && mkdir -p /appdata/authelia/
- sops exec-env secrets.encoded.env 'cat ./security/authelia/configuration.yml | envsubst' > /appdata/authelia/config/configuration.yml
- echo "authelia" >> restart.containers
when:
paths:
include:
- unraid-homelab/**/authelia/configuration.yml
depends_on:
- compose-config-check
- name: move-traefik-config
image: alpine:edge
volumes:
- name: appdata
path: /appdata
environment:
SOPS_AGE_KEY:
from_secret: age-key
commands:
- apk update && apk add sops envsubst
- cd unraid-homelab/ && mkdir -p /appdata/traefik/
- sops exec-env secrets.encoded.env 'cat ./ingress/traefik/configFile.yaml | envsubst' > /appdata/traefik/configFile.yaml
- echo "traefik" >> restart.containers
when:
paths:
include:
- unraid-homelab/**/traefik/configFile.yaml
depends_on:
- compose-config-check
- name: deploy
image: alpine:edge
volumes:
- name: dockersock
path: /var/run/docker.sock
environment:
SOPS_AGE_KEY:
from_secret: age-key
commands:
- apk update && apk add docker-compose sops
- cd unraid-homelab/
- sops exec-env secrets.encoded.env 'docker-compose -f docker-compose.yaml up --detach --quiet-pull --remove-orphans --wait'
- if [ -f ./restart.containers ]; then sops exec-env secrets.encoded.env 'docker-compose -f docker-compose.yaml restart $(cat restart.containers)'; fi
when:
paths:
include:
- unraid-homelab/**
depends_on:
- compose-config-check
- move-recyclarr-config
- move-authelia-config
- move-traefik-config
- name: send-notification
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: Drone
message: "❌ 📦 Docker stack update failed"
depends_on:
- deploy
when:
status:
- failure
---
kind: pipeline
type: docker
name: global-notification
depends_on:
- gitleaks
- manage-unraid-icons
- check-and-deploy
trigger:
branch:
- main
event:
- push
status:
- failure
steps:
- name: send-notification
image: appleboy/drone-discord
settings:
webhook_id:
from_secret: discord_webhook_id
webhook_token:
from_secret: discord_webhook_token
username: Drone
message: "{{#success build.status}} ✅ Build #{{build.number}} from `{{repo.name}}` succeeded.\n\n📝 Commit by {{commit.author}} on `{{commit.branch}}`:\n``` {{commit.message}} ```\n🌐 {{ build.link }}\n\n ✅ duration: {{duration build.started build.finished}} \n ✅ started: {{datetime build.started \"2006/01/02 15:04\" \"Europe/Paris\"}} \n ✅ finished: {{datetime build.finished \"2006/01/02 15:04\" \"Europe/Paris\"}} {{else}} ❌ Build #{{build.number}} from `{{repo.name}}` failed.\n\n📝 Commit by {{commit.author}} on `{{commit.branch}}`:\n``` {{commit.message}} ```\n🌐 {{ build.link }}\n\n ✅ duration: {{duration build.started build.finished}} \n ✅ started: {{datetime build.started \"2006/01/02 15:04\" \"Europe/Paris\"}} \n ✅ finished: {{datetime build.finished \"2006/01/02 15:04\" \"Europe/Paris\"}}{{/success}}\n"