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