refactors minecraft jobs allowing for more flexibility in the future (e.g. adding an rcon web interface): - split `minecraft.hcl` into multiple job files - update ports used - add consul service attached to mc and rcon ports - remove `gate-proxy.hcl` static configuration - it is now consul aware via a consul template - add fallback route on `gate-proxy` with message to inform users - remove unused jobs - move all minecraft jobs to use template blocks instead of env blocks for envvars - this lets us define the `RCON_PASSWORD` and store it in consul
62 lines
1.1 KiB
HCL
62 lines
1.1 KiB
HCL
job "minecraft-games" {
|
|
datacenters = ["aperture"]
|
|
type = "service"
|
|
|
|
group "games-mc" {
|
|
count = 1
|
|
|
|
network {
|
|
port "mc" {
|
|
to = 25565
|
|
}
|
|
|
|
port "rcon" {
|
|
to = 25575
|
|
}
|
|
}
|
|
|
|
service {
|
|
name = "games-mc"
|
|
port = "mc"
|
|
}
|
|
|
|
service {
|
|
name = "games-mc-rcon"
|
|
port = "rcon"
|
|
}
|
|
|
|
task "minecraft-games" {
|
|
driver = "docker"
|
|
|
|
config {
|
|
image = "itzg/minecraft-server"
|
|
ports = ["mc", "rcon"]
|
|
|
|
volumes = [
|
|
"/storage/nomad/${NOMAD_TASK_NAME}:/data"
|
|
]
|
|
}
|
|
|
|
resources {
|
|
cpu = 3000 # 3000 MHz
|
|
memory = 8192 # 8GB
|
|
}
|
|
|
|
template {
|
|
data = <<EOF
|
|
EULA = "TRUE"
|
|
TYPE = "PURPUR"
|
|
VERSION = "1.20.1"
|
|
MOTD = "DCU Games Soc Minecraft Server"
|
|
USE_AIKAR_FLAGS = true
|
|
OPS = ""
|
|
MAX_PLAYERS = "20"
|
|
ENABLE_RCON = true
|
|
RCON_PASSWORD = {{ key "games/mc/games-mc/rcon/password" }}
|
|
EOF
|
|
destination = "local/.env"
|
|
env = true
|
|
}
|
|
}
|
|
}
|
|
}
|