Deploy core on neptune as well

This commit is contained in:
Alex 2021-12-08 11:41:07 +01:00
parent fff6f1db20
commit 8846421cc4
No known key found for this signature in database
GPG key ID: EDABF9711E244EB1
3 changed files with 60 additions and 40 deletions

View file

@ -1,51 +1,51 @@
job "core" {
datacenters = ["dc1"]
type = "system"
priority = 90
datacenters = ["dc1", "neptune"]
type = "system"
priority = 90
constraint {
attribute = "${attr.cpu.arch}"
value = "amd64"
}
constraint {
attribute = "${attr.cpu.arch}"
value = "amd64"
}
update {
max_parallel = 1
stagger = "1m"
}
update {
max_parallel = 1
stagger = "1m"
}
group "network" {
task "diplonat" {
driver = "docker"
group "network" {
task "diplonat" {
driver = "docker"
config {
image = "darkgallium/amd64_diplonat:v3"
network_mode = "host"
readonly_rootfs = true
privileged = true
}
config {
image = "darkgallium/amd64_diplonat:v3"
network_mode = "host"
readonly_rootfs = true
privileged = true
}
restart {
interval = "30m"
attempts = 2
delay = "15s"
mode = "delay"
}
restart {
interval = "30m"
attempts = 2
delay = "15s"
mode = "delay"
}
template {
data = <<EOH
template {
data = <<EOH
DIPLONAT_PRIVATE_IP={{ env "attr.unique.network.ip-address" }}
DIPLONAT_REFRESH_TIME=60
DIPLONAT_EXPIRATION_TIME=300
DIPLONAT_CONSUL_NODE_NAME={{ env "attr.unique.hostname" }}
RUST_LOG=debug
EOH
destination = "secrets/env"
env = true
}
destination = "secrets/env"
env = true
}
resources {
memory = 40
}
}
}
resources {
memory = 40
}
}
}
}

View file

@ -19,5 +19,5 @@ api_bind_addr = "[::]:3990"
[s3_web]
bind_addr = "[::]:3992"
root_domain = ".web-staging.deuxfleurs.fr"
root_domain = ".garage-staging-web.home.adnab.me"
index = "index.html"

View file

@ -56,9 +56,7 @@ job "garage-staging" {
service {
tags = [
"garage-staging-api",
"traefik.enable=true",
"traefik.frontend.entryPoints=https,http",
"traefik.frontend.rule=Host:garage-staging.deuxfleurs.fr"
"tricot garage-staging.home.adnab.me",
]
port = 3990
address_mode = "driver"
@ -96,6 +94,28 @@ job "garage-staging" {
}
}
service {
tags = [
"garage-staging-web",
"tricot *.garage-staging-web.home.adnab.me",
]
port = 3992
address_mode = "driver"
name = "garage-staging-web"
check {
type = "tcp"
port = 3992
address_mode = "driver"
interval = "60s"
timeout = "5s"
check_restart {
limit = 3
grace = "90s"
ignore_warnings = false
}
}
}
restart {
interval = "30m"
attempts = 10