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

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

View file

@ -2,49 +2,41 @@ job "minecraft" {
datacenters = ["aperture"] datacenters = ["aperture"]
type = "service" type = "service"
# group "vanilla" { group "vanilla-mc" {
# constraint { count = 1
# attribute = "${attr.unique.hostname}"
# value = "glados" network {
# } port "mc-vanilla-port" {
# static = 25567
# count = 1 to = 25565
# network { }
# port "mc-vanilla-port" { port "mc-vanilla-rcon" {
# static = 25565 to = 25575
# to = 25565 }
# } }
# port "mc-vanilla-rcon" {
# to = 25575 service {
# } name = "vanilla-mc"
# #mode = "bridge" }
# }
# task "minecraft-server" {
# service { driver = "docker"
# name = "minecraft-vanilla" config {
# } image = "itzg/minecraft-server"
# ports = ["mc-vanilla-port","mc-vanilla-rcon"]
# task "minecraft-server" { }
# driver = "docker"
# config { resources {
# image = "itzg/minecraft-server" cpu = 3000 # 3000 MHz
# ports = ["mc-vanilla-port","mc-vanilla-rcon"] memory = 7168 # 7gb
# volumes = [ }
# "/storage/nomad/${NOMAD_TASK_NAME}:/data/world"
# ] env {
# } EULA = "TRUE"
# MEMORY = "6G"
# resources { }
# cpu = 3000 # 500 MHz }
# memory = 6144 # 6gb }
# }
#
# env {
# EULA = "TRUE"
# MEMORY = "6G"
# }
# }
# }
group "fugitives-mc" { group "fugitives-mc" {
count = 1 count = 1
@ -58,8 +50,6 @@ job "minecraft" {
port "mc-fugitives-rcon" { port "mc-fugitives-rcon" {
to = 25575 to = 25575
} }
#mode = "bridge"
} }
service { service {
@ -72,13 +62,10 @@ job "minecraft" {
config { config {
image = "itzg/minecraft-server" image = "itzg/minecraft-server"
ports = ["mc-fugitives-port","mc-fugitives-rcon"] ports = ["mc-fugitives-port","mc-fugitives-rcon"]
#volumes = [
# "/storage/nomad/${NOMAD_TASK_NAME}:/data/world"
#]
} }
resources { resources {
cpu = 3000 # 500 MHz cpu = 3000 # 3000 MHz
memory = 8168 # 8gb memory = 8168 # 8gb
} }