add esports bot job (#72)
Co-authored-by: wizzdom <wizzdom@redbrick.dcu.ie>
This commit is contained in:
parent
198d269d37
commit
2b1a8e68dc
1 changed files with 37 additions and 0 deletions
37
jobs/socs/esports-discord-bot.hcl
Normal file
37
jobs/socs/esports-discord-bot.hcl
Normal file
|
@ -0,0 +1,37 @@
|
|||
job "esports-discord-bot" {
|
||||
datacenters = ["aperture"]
|
||||
type = "service"
|
||||
|
||||
group "esports-bot" {
|
||||
count = 1
|
||||
|
||||
task "esports-bot" {
|
||||
driver = "docker"
|
||||
|
||||
config {
|
||||
image = "ghcr.io/aydenjahola/discord-multipurpose-bot:main"
|
||||
}
|
||||
|
||||
resources {
|
||||
cpu = 500
|
||||
memory = 256
|
||||
}
|
||||
|
||||
template {
|
||||
data = <<EOH
|
||||
BOT_TOKEN={{ key "socs/esports/bot/discord/token" }}
|
||||
EMAIL_NAME={{ key "socs/esports/bot/email/name" }}
|
||||
EMAIL_PASS={{ key "socs/esports/bot/email/pass" }}
|
||||
EMAIL_USER={{key "socs/esports/bot/email/user" }}
|
||||
MONGODB_URI={{key "socs/esports/bot/mongodb/uri"}}
|
||||
RAPIDAPI_KEY={{ key "socs/esports/bot/rapidapi/key" }}
|
||||
TRACKER_API_KEY={{ key "socs/esports/bot/trackerapi/key" }}
|
||||
TRACKER_API_URL={{ key "socs/esports/bot/trackerapi/url" }}
|
||||
WORDNIK_API_KEY={{key "socs/esports/bot/wordnikapi/key" }}
|
||||
EOH
|
||||
destination = "local/.env"
|
||||
env = true
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue