Update MC conf for fugatives and regaus

This commit is contained in:
hypnoant 2024-04-11 14:29:11 +01:00
parent 48bad91a31
commit 74ce11d060
2 changed files with 93 additions and 0 deletions

View file

@ -45,6 +45,49 @@ job "minecraft" {
}
}
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
@ -136,4 +179,51 @@ job "minecraft" {
}
}
}
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"
}
}
}
}

View file

@ -52,6 +52,8 @@ config:
backend: vanilla-mc.service.consul:25567
- host: olim909.rb.dcu.ie
backend: olim909-mc.service.consul:25568
- host: regaus.rb.dcu.ie
backend: regaus-mc.service.consul:25566
- host: games.rb.dcu.ie
backend: games-mc.service.consul:25569
EOH
@ -60,3 +62,4 @@ EOH
}
}
}