From fe6f66754d0e9435affaf111ee4c3ea89e562606 Mon Sep 17 00:00:00 2001 From: wizzdom Date: Mon, 14 Oct 2024 09:12:43 +0100 Subject: [PATCH] Minecraft refactor: dynamic routes, separate jobs (#59) 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 --- jobs/games/minecraft.hcl | 279 ----------------------------- jobs/games/minecraft/cjaran.hcl | 61 +++++++ jobs/games/minecraft/fugitives.hcl | 58 ++++++ jobs/games/minecraft/games.hcl | 62 +++++++ jobs/games/minecraft/magma.hcl | 52 ++++-- jobs/games/minecraft/vanilla.hcl | 59 ++++++ jobs/ingress/gate-proxy.hcl | 45 ++--- 7 files changed, 300 insertions(+), 316 deletions(-) delete mode 100644 jobs/games/minecraft.hcl create mode 100644 jobs/games/minecraft/cjaran.hcl create mode 100644 jobs/games/minecraft/fugitives.hcl create mode 100644 jobs/games/minecraft/games.hcl create mode 100644 jobs/games/minecraft/vanilla.hcl diff --git a/jobs/games/minecraft.hcl b/jobs/games/minecraft.hcl deleted file mode 100644 index e715f69..0000000 --- a/jobs/games/minecraft.hcl +++ /dev/null @@ -1,279 +0,0 @@ -job "minecraft" { - datacenters = ["aperture"] - type = "service" - - group "vanilla-mc" { - count = 1 - - network { - port "mc-vanilla-port" { - static = 25567 - to = 25565 - } - port "mc-vanilla-rcon" { - to = 25575 - } - } - - service { - name = "vanilla-mc" - } - - task "minecraft-vanilla" { - driver = "docker" - config { - image = "itzg/minecraft-server" - ports = ["mc-vanilla-port","mc-vanilla-rcon"] - volumes = [ - "/storage/nomad/${NOMAD_TASK_NAME}:/data" - ] - } - - resources { - cpu = 3000 # 3000 MHz - memory = 8192 # 8GB - } - - env { - EULA = "TRUE" - TYPE = "PAPER" - ICON = "https://docs.redbrick.dcu.ie/assets/logo.png" - USE_AIKAR_FLAGS=true - MOTD = "LONG LIVE THE REDBRICK" - MAX_PLAYERS = "20" - } - } - } - - group "fugitives-mc" { - count = 1 - - network { - port "mc-fugitives-port" { - static = 25570 - to = 25565 - } - port "mc-fugitives-rcon" { - to = 25575 - } - } - - service { - name = "fugitives-mc" - } - - task "minecraft-fugitives" { - driver = "docker" - config { - image = "itzg/minecraft-server" - ports = ["mc-fugitives-port","mc-fugitives-rcon"] - volumes = [ - "/storage/nomad/${NOMAD_TASK_NAME}:/data" - ] - } - - resources { - cpu = 3000 # 3000 MHz - memory = 8192 # 8GB - } - - env { - EULA = "TRUE" - TYPE = "PAPER" - USE_AIKAR_FLAGS=true - MOTD = "Fugitives" - MAX_PLAYERS = "20" - MEMORY = "6G" - } - } - } - - group "games-mc" { - count = 1 - - network { - port "mc-games-port" { - static = 25569 - to = 25565 - } - - port "mc-games-rcon" { - to = 25575 - } - } - - service { - name = "games-mc" - } - - task "minecraft-games" { - driver = "docker" - - config { - image = "itzg/minecraft-server" - ports = ["mc-games-port","mc-games-rcon"] - - volumes = [ - "/storage/nomad/${NOMAD_TASK_NAME}:/data" - ] - } - - resources { - cpu = 3000 # 3000 MHz - memory = 8192 # 8GB - } - - env { - EULA = "TRUE" - TYPE = "PURPUR" - VERSION = "1.20.1" - MOTD = "DCU Games Soc Minecraft Server" - USE_AIKAR_FLAGS=true - OPS = "" - MAX_PLAYERS = "20" - } - } - } - group "olim909-mc" { - count = 1 - - network { - port "mc-olim909-port" { - static = 25568 - to = 25565 - } - - port "mc-olim909-rcon" { - to = 25575 - } - port "mc-olim909-geyser" { - to = 19132 - } - } - - service { - name = "olim909-mc" - } - - task "minecraft-olim909" { - driver = "docker" - - config { - image = "itzg/minecraft-server" - ports = ["mc-olim909-port","mc-olim909-rcon","mc-olim909-geyser"] - - volumes = [ - "/storage/nomad/${NOMAD_TASK_NAME}:/data" - ] - } - - resources { - cpu = 3000 # 3000 MHz - memory = 4096 # 4GB - } - - env { - EULA = "TRUE" - TYPE = "PAPER" - VERSION = "1.20.4" - USE_AIKAR_FLAGS=true - OPS = "Olim909" - MAX_PLAYERS = "5" - } - } - } - - group "regaus-mc" { - count = 1 - - network { - port "mc-regaus-port" { - static = 25566 - to = 25565 - } - - port "mc-regaus-rcon" { - to = 25575 - } - } - - service { - name = "regaus-mc" - } - - task "minecraft-regaus" { - driver = "docker" - - config { - image = "itzg/minecraft-server" - ports = ["mc-regaus-port","mc-regaus-rcon"] - - volumes = [ - "/storage/nomad/${NOMAD_TASK_NAME}:/data" - ] - } - - resources { - cpu = 3000 # 3000 MHz - memory = 4096 # 4GB - } - - env { - EULA = "TRUE" - TYPE = "PAPER" - VERSION = "1.20.4" - USE_AIKAR_FLAGS=true - OPS = "regaus" - MAX_PLAYERS = "5" - } - } - } - - group "cjaran-mc" { - count = 1 - - network { - port "mc-cjaran-port" { - static = 25571 - to = 25565 - } - - port "mc-cjaran-rcon" { - to = 25575 - } - } - - service { - name = "cjaran-mc" - } - - task "minecraft-cjaran" { - driver = "docker" - - config { - image = "itzg/minecraft-server" - ports = ["mc-cjaran-port","mc-cjaran-rcon"] - - volumes = [ - "/storage/nomad/${NOMAD_TASK_NAME}:/data" - ] - } - - resources { - cpu = 3000 # 3000 MHz - memory = 4096 # 4GB - } - - env { - EULA = "TRUE" - TYPE = "PAPER" - ICON = "https://i.imgur.com/HC9cRNf.png" - VERSION = "1.20.4" - USE_AIKAR_FLAGS=true - OPS = "BloThen" - MAX_PLAYERS = "10" - } - } - } -} - diff --git a/jobs/games/minecraft/cjaran.hcl b/jobs/games/minecraft/cjaran.hcl new file mode 100644 index 0000000..406f40c --- /dev/null +++ b/jobs/games/minecraft/cjaran.hcl @@ -0,0 +1,61 @@ +job "minecraft-cjaran" { + datacenters = ["aperture"] + type = "service" + + group "cjaran-mc" { + count = 1 + + network { + port "mc" { + to = 25565 + } + + port "rcon" { + to = 25575 + } + } + + service { + name = "cjaran-mc" + port = "mc" + } + + service { + name = "cjaran-mc-rcon" + port = "rcon" + } + + task "minecraft-cjaran" { + driver = "docker" + + config { + image = "itzg/minecraft-server" + ports = ["mc", "rcon"] + + volumes = [ + "/storage/nomad/${NOMAD_TASK_NAME}:/data" + ] + } + + resources { + cpu = 3000 # 3000 MHz + memory = 4096 # 4GB + } + + template { + data = <