add midnight calendarbot job

This commit is contained in:
wizzdom 2024-03-14 17:26:44 +00:00
parent cbcc4100cb
commit 6837fdc871
No known key found for this signature in database
GPG key ID: EEB7D796F4B09F07

View file

@ -0,0 +1,26 @@
job "midnight-calendarbot" {
datacenters = ["aperture"]
type = "service"
group "calendarbot" {
count = 1
task "calendarbot" {
driver = "docker"
config {
image = "ghcr.io/nightmarishblue/calendarbot:master"
force_pull = true
}
template {
data = <<EOH
BOT_TOKEN={{ key "user-projects/midnight/calendarbot/discord/token" }}
APPLICATION_ID={{ key "user-projects/midnight/calendarbot/discord/appid" }}
EOH
destination = "local/.env"
env = true
}
}
}
}