Add vanilla server and update router

This commit is contained in:
James Hackett 2024-01-04 16:48:49 +00:00
parent 8c1f0b4778
commit b1dbed2e91
2 changed files with 39 additions and 50 deletions

View file

@ -53,6 +53,8 @@ config:
routes:
- host: fugitives.rb.dcu.ie
backend: fugitives-mc.service.consul:25566
- host: mc.rb.dcu.ie
backend: vanilla-mc.service.consul:25567
EOH
destination = "local/file.conf"
}

View file

@ -2,49 +2,41 @@ job "minecraft" {
datacenters = ["aperture"]
type = "service"
# group "vanilla" {
# 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"]
# volumes = [
# "/storage/nomad/${NOMAD_TASK_NAME}:/data/world"
# ]
# }
#
# resources {
# cpu = 3000 # 500 MHz
# memory = 6144 # 6gb
# }
#
# env {
# EULA = "TRUE"
# MEMORY = "6G"
# }
# }
# }
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-server" {
driver = "docker"
config {
image = "itzg/minecraft-server"
ports = ["mc-vanilla-port","mc-vanilla-rcon"]
}
resources {
cpu = 3000 # 3000 MHz
memory = 7168 # 7gb
}
env {
EULA = "TRUE"
MEMORY = "6G"
}
}
}
group "fugitives-mc" {
count = 1
@ -58,8 +50,6 @@ job "minecraft" {
port "mc-fugitives-rcon" {
to = 25575
}
#mode = "bridge"
}
service {
@ -72,13 +62,10 @@ job "minecraft" {
config {
image = "itzg/minecraft-server"
ports = ["mc-fugitives-port","mc-fugitives-rcon"]
#volumes = [
# "/storage/nomad/${NOMAD_TASK_NAME}:/data/world"
#]
}
resources {
cpu = 3000 # 500 MHz
cpu = 3000 # 3000 MHz
memory = 8168 # 8gb
}