Allow multiple minecraft servers on one port
This commit is contained in:
parent
1c26c4401b
commit
e1e79362c5
3 changed files with 118 additions and 53 deletions
61
jobs/mc-router.hcl
Normal file
61
jobs/mc-router.hcl
Normal file
|
@ -0,0 +1,61 @@
|
||||||
|
job "mc-router" {
|
||||||
|
datacenters = ["aperture"]
|
||||||
|
|
||||||
|
type = "service"
|
||||||
|
|
||||||
|
constraint {
|
||||||
|
attribute = "${attr.unique.hostname}"
|
||||||
|
value = "bastion-vm"
|
||||||
|
}
|
||||||
|
|
||||||
|
group "mc-router" {
|
||||||
|
count = 1
|
||||||
|
|
||||||
|
network {
|
||||||
|
port "mc" {
|
||||||
|
static = 4501
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
service {
|
||||||
|
port = "mc"
|
||||||
|
|
||||||
|
check {
|
||||||
|
type = "tcp"
|
||||||
|
interval = "10s"
|
||||||
|
timeout = "2s"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
task "webserver" {
|
||||||
|
driver = "docker"
|
||||||
|
|
||||||
|
config {
|
||||||
|
image = "ghcr.io/minekube/gate"
|
||||||
|
ports = ["mc"]
|
||||||
|
|
||||||
|
volumes = [
|
||||||
|
"local/file.conf:/config.yaml"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
template {
|
||||||
|
data = <<EOH
|
||||||
|
# This is a simplified config where the rest of the
|
||||||
|
# settings are omitted and will be set by default.
|
||||||
|
# See config.yml for the full configuration options.
|
||||||
|
config:
|
||||||
|
bind: 0.0.0.0:4501
|
||||||
|
|
||||||
|
lite:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
|
routes:
|
||||||
|
- host: fugitives.rb.dcu.ie
|
||||||
|
backend: fugitives-mc.service.consul:25566
|
||||||
|
EOH
|
||||||
|
destination = "local/file.conf"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -2,75 +2,79 @@ job "minecraft" {
|
||||||
datacenters = ["aperture"]
|
datacenters = ["aperture"]
|
||||||
type = "service"
|
type = "service"
|
||||||
|
|
||||||
group "vanilla" {
|
# group "vanilla" {
|
||||||
constraint {
|
# constraint {
|
||||||
attribute = "${attr.unique.hostname}"
|
# attribute = "${attr.unique.hostname}"
|
||||||
value = "glados"
|
# 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 "fugitives-mc" {
|
||||||
count = 1
|
count = 1
|
||||||
|
|
||||||
network {
|
network {
|
||||||
port "mc-vanilla-port" {
|
port "mc-fugitives-port" {
|
||||||
static = 25565
|
static = 25566
|
||||||
to = 25565
|
to = 25565
|
||||||
}
|
}
|
||||||
port "mc-vanilla-rcon" {
|
|
||||||
|
port "mc-fugitives-rcon" {
|
||||||
to = 25575
|
to = 25575
|
||||||
}
|
}
|
||||||
|
|
||||||
#mode = "bridge"
|
#mode = "bridge"
|
||||||
}
|
}
|
||||||
|
|
||||||
service {
|
service {
|
||||||
name = "minecraft-vanilla"
|
name = "fugitives-mc"
|
||||||
}
|
}
|
||||||
|
|
||||||
task "minecraft-server" {
|
task "minecraft-fugitives" {
|
||||||
driver = "docker"
|
driver = "docker"
|
||||||
|
|
||||||
config {
|
config {
|
||||||
image = "itzg/minecraft-server"
|
image = "itzg/minecraft-server"
|
||||||
ports = ["mc-vanilla-port","mc-vanilla-rcon"]
|
ports = ["mc-fugitives-port","mc-fugitives-rcon"]
|
||||||
volumes = [
|
#volumes = [
|
||||||
"/storage/nomad/${NOMAD_TASK_NAME}:/data/world"
|
# "/storage/nomad/${NOMAD_TASK_NAME}:/data/world"
|
||||||
]
|
#]
|
||||||
}
|
|
||||||
|
|
||||||
resources {
|
|
||||||
cpu = 3000 # 500 MHz
|
|
||||||
memory = 6144 # 6gb
|
|
||||||
}
|
|
||||||
|
|
||||||
env {
|
|
||||||
EULA = "TRUE"
|
|
||||||
MEMORY = "6G"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
group "create-astral" {
|
|
||||||
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 = "ghcr.io/maxi0604/create-astral:main"
|
|
||||||
ports = ["mc-astral-port","mc-astral-rcon"]
|
|
||||||
volumes = [
|
|
||||||
"/storage/nomad/${NOMAD_TASK_NAME}:/data/world"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
|
|
||||||
resources {
|
resources {
|
||||||
|
|
0
jobs/user-vms/README.md
Executable file → Normal file
0
jobs/user-vms/README.md
Executable file → Normal file
Loading…
Reference in a new issue