Add minecraft servers and update traefik to allow users to connect

This commit is contained in:
James Hackett 2023-05-15 23:21:57 +01:00
parent 37b648df97
commit c9b1ea69c9
2 changed files with 14 additions and 27 deletions

View file

@ -1,8 +1,8 @@
job "create-astral" { job "minecraft" {
datacenters = ["aperture"] datacenters = ["aperture"]
type = "service" type = "service"
group "mc" { group "vanilla" {
constraint { constraint {
attribute = "${attr.unique.hostname}" attribute = "${attr.unique.hostname}"
value = "glados" value = "glados"
@ -29,6 +29,9 @@ job "create-astral" {
config { config {
image = "itzg/minecraft-server" image = "itzg/minecraft-server"
ports = ["mc-vanilla-port","mc-vanilla-rcon"] ports = ["mc-vanilla-port","mc-vanilla-rcon"]
volumes = [
"/storage/nomad/${NOMAD_TASK_NAME}:/data/world"
]
} }
resources { resources {
@ -43,12 +46,7 @@ job "create-astral" {
} }
} }
group "mc-astral" { group "create-astral" {
constraint {
attribute = "${attr.unique.hostname}"
value = "glados"
}
count = 1 count = 1
network { network {
port "mc-astral-port" { port "mc-astral-port" {
@ -68,32 +66,21 @@ job "create-astral" {
task "minecraft-astral" { task "minecraft-astral" {
driver = "docker" driver = "docker"
config { config {
image = "itzg/minecraft-server" image = "ghcr.io/maxi0604/create-astral:main"
ports = ["mc-astral-port","mc-astral-rcon"] ports = ["mc-astral-port","mc-astral-rcon"]
volumes = [ volumes = [
"data:/data" "/storage/nomad/${NOMAD_TASK_NAME}:/data/world"
] ]
} }
resources { resources {
cpu = 3000 # 500 MHz cpu = 3000 # 500 MHz
memory = 6144 # 6gb memory = 8168 # 8gb
} }
env { env {
EULA = "TRUE" EULA = "TRUE"
MEMORY = "6G" 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
}
} }
} }
} }

View file

@ -35,11 +35,11 @@ job "traefik" {
template { template {
data = <<EOF data = <<EOF
[entryPoints] [entryPoints]
[entryPoints.web] # [entryPoints.web]
address = ":80" # address = ":80"
[entryPoints.web.http.redirections.entryPoint] # [entryPoints.web.http.redirections.entryPoint]
to = "websecure" # to = "websecure"
scheme = "https" # scheme = "https"
[entryPoints.websecure] [entryPoints.websecure]
address = ":443" address = ":443"