Esports: update discord bot job and add minecraft server (#101)
* socs: update esports discord bot * esports: add minecraft server job
This commit is contained in:
parent
44ac151512
commit
07f1f032b7
2 changed files with 74 additions and 0 deletions
64
jobs/games/minecraft/esports.hcl
Normal file
64
jobs/games/minecraft/esports.hcl
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
job "esports-minecraft" {
|
||||||
|
datacenters = ["aperture"]
|
||||||
|
type = "service"
|
||||||
|
|
||||||
|
group "esports-mc" {
|
||||||
|
count = 1
|
||||||
|
|
||||||
|
network {
|
||||||
|
port "mc" {
|
||||||
|
to = 25565
|
||||||
|
}
|
||||||
|
port "rcon" {
|
||||||
|
to = 25575
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
service {
|
||||||
|
name = "esports-mc"
|
||||||
|
port = "mc"
|
||||||
|
}
|
||||||
|
|
||||||
|
service {
|
||||||
|
name = "esports-mc-rcon"
|
||||||
|
port = "rcon"
|
||||||
|
}
|
||||||
|
|
||||||
|
task "esports-minecraft" {
|
||||||
|
driver = "docker"
|
||||||
|
config {
|
||||||
|
image = "itzg/minecraft-server"
|
||||||
|
ports = ["mc", "rcon"]
|
||||||
|
volumes = [
|
||||||
|
"/storage/nomad/${NOMAD_TASK_NAME}:/data"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
resources {
|
||||||
|
cpu = 5000 # 5000 MHz
|
||||||
|
memory = 20480 # 20 GB
|
||||||
|
}
|
||||||
|
|
||||||
|
template {
|
||||||
|
data = <<EOF
|
||||||
|
EULA = "TRUE"
|
||||||
|
TYPE = "PAPER"
|
||||||
|
VERSION = "1.21.4"
|
||||||
|
ICON = "https://liquipedia.net/commons/images/thumb/5/53/DCU_Esports_allmode.png/37px-DCU_Esports_allmode.png"
|
||||||
|
USE_AIKAR_FLAGS = true
|
||||||
|
MAX_MEMORY = 18G
|
||||||
|
MOTD = "Powered by Redbrick"
|
||||||
|
MAX_PLAYERS = "32"
|
||||||
|
VIEW_DISTANCE = "32"
|
||||||
|
ENABLE_RCON = true
|
||||||
|
RCON_PASSWORD = {{ key "games/mc/esports-mc/rcon/password" }}
|
||||||
|
# Auto-download plugins
|
||||||
|
SPIGET_RESOURCES=83581,62325,118271,28140,102931 # RHLeafDecay, GSit, GravesX, Luckperms, NoChatReport
|
||||||
|
MODRINTH_PROJECTS=datapack:no-enderman-grief,thizzyz-tree-feller,imageframe,bmarker,datapack:players-drop-heads,viaversion,viabackwards
|
||||||
|
EOF
|
||||||
|
destination = "local/.env"
|
||||||
|
env = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -10,6 +10,7 @@ job "esports-discord-bot" {
|
||||||
|
|
||||||
config {
|
config {
|
||||||
image = "ghcr.io/aydenjahola/discord-multipurpose-bot:main"
|
image = "ghcr.io/aydenjahola/discord-multipurpose-bot:main"
|
||||||
|
force_pull = true
|
||||||
}
|
}
|
||||||
|
|
||||||
resources {
|
resources {
|
||||||
|
@ -28,6 +29,15 @@ RAPIDAPI_KEY={{ key "socs/esports/bot/rapidapi/key" }}
|
||||||
TRACKER_API_KEY={{ key "socs/esports/bot/trackerapi/key" }}
|
TRACKER_API_KEY={{ key "socs/esports/bot/trackerapi/key" }}
|
||||||
TRACKER_API_URL={{ key "socs/esports/bot/trackerapi/url" }}
|
TRACKER_API_URL={{ key "socs/esports/bot/trackerapi/url" }}
|
||||||
WORDNIK_API_KEY={{key "socs/esports/bot/wordnikapi/key" }}
|
WORDNIK_API_KEY={{key "socs/esports/bot/wordnikapi/key" }}
|
||||||
|
HUGGING_FACE_API_KEY={{ key "socs/esports/bot/huggingface/key" }}
|
||||||
|
|
||||||
|
RCON_HOST=esports-mc-rcon.service.consul
|
||||||
|
|
||||||
|
# https://discuss.hashicorp.com/t/passing-registered-ip-and-port-from-consul-to-env-nomad-job-section/35647
|
||||||
|
{{ range service "esports-mc-rcon" }}
|
||||||
|
RCON_PORT={{ .Port }}{{ end }}
|
||||||
|
|
||||||
|
RCON_PASSWORD={{ key "games/mc/esports-mc/rcon/password" }}
|
||||||
EOH
|
EOH
|
||||||
destination = "local/.env"
|
destination = "local/.env"
|
||||||
env = true
|
env = true
|
||||||
|
|
Loading…
Reference in a new issue