From 37b648df97794b0d39246a94d59034d931bd7ada Mon Sep 17 00:00:00 2001 From: James Hackett Date: Tue, 2 May 2023 13:26:20 +0100 Subject: [PATCH] Add minecraft job spec Add a local user and let them tunnel a port and connect to localhost ssh -L 25565:10.10.0.4: @glados.redbrick.dcu.ie -p 80 Then in the minecraft server settings on the client, type localhost --- jobs/minecraft.hcl | 100 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 jobs/minecraft.hcl diff --git a/jobs/minecraft.hcl b/jobs/minecraft.hcl new file mode 100644 index 0000000..fc4cfc9 --- /dev/null +++ b/jobs/minecraft.hcl @@ -0,0 +1,100 @@ +job "create-astral" { + datacenters = ["aperture"] + type = "service" + + group "mc" { + constraint { + attribute = "${attr.unique.hostname}" + value = "glados" + } + + count = 1 + network { + port "mc-vanilla-port" { + static = 25565 + to = 25565 + } + port "mc-vanilla-rcon" { + to = 25575 + } + #mode = "bridge" + } + + service { + name = "minecraft-vanilla" + } + + task "minecraft-server" { + driver = "docker" + config { + image = "itzg/minecraft-server" + ports = ["mc-vanilla-port","mc-vanilla-rcon"] + } + + resources { + cpu = 3000 # 500 MHz + memory = 6144 # 6gb + } + + env { + EULA = "TRUE" + MEMORY = "6G" + } + } + } + + group "mc-astral" { + constraint { + attribute = "${attr.unique.hostname}" + value = "glados" + } + + count = 1 + network { + port "mc-astral-port" { + static = 25566 + to = 25565 + } + port "mc-astral-rcon" { + to = 25575 + } + mode = "bridge" + } + + service { + name = "minecraft-astral" + } + + task "minecraft-astral" { + driver = "docker" + config { + image = "itzg/minecraft-server" + ports = ["mc-astral-port","mc-astral-rcon"] + volumes = [ + "data:/data" + ] + } + + resources { + cpu = 3000 # 500 MHz + memory = 6144 # 6gb + } + + env { + EULA = "TRUE" + MEMORY = "6G" + TYPE = "FORGE" + VERSION = "1.18.2" + CF_SERVER_MOD = "modpack.zip" + } + + artifact { + source = "http://10.10.0.5:8000/modpack.zip" + destination = "/data" + options { + archive = false + } + } + } + } +}