-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbrigade.js
25 lines (20 loc) · 1.01 KB
/
brigade.js
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
const { events, Job } = require("brigadier");
events.on("image_push", function(e, project) {
var docker = JSON.parse(e.payload)
if (docker.push_data.tag != "latest") {
console.log(`ignoring non-master build for branch ${docker.push_data.tag}`)
return
}
var update = new Job("update", "python:3")
update.tasks = [
"pip install kubernetes",
"python /src/.brigade/update.py"
]
var notify = new Job("notify", "alpine:3.4")
notify.env.CHATKEY = project.secrets.chatKey
notify.tasks = [
"apk update && apk add curl",
"curl -X POST -H 'Content-Type: application/json' --data '{\"username\":\"Brigade\",\"icon_emoji\":\":k8s:\",\"text\":\"Directory prod deployment updated.\",\"attachments\":[{\"title\":\"https://profile.gccollab.ca\",\"title_link\": \"https://profile.gccollab.ca\",\"text\": \"Rolling update in progress.\",\"color\":\"#764FA5\"}]}' https://message.gccollab.ca/hooks/$CHATKEY" //rocket chat notification webhook
]
update.run().then(() => { notify.run() })
})