2023-04-05 13:50:46 +00:00
|
|
|
job "bagage" {
|
2023-09-04 17:05:18 +00:00
|
|
|
datacenters = ["scorpio", "neptune"]
|
2023-04-05 13:50:46 +00:00
|
|
|
type = "service"
|
|
|
|
priority = 90
|
|
|
|
|
|
|
|
constraint {
|
|
|
|
attribute = "${attr.cpu.arch}"
|
|
|
|
value = "amd64"
|
|
|
|
}
|
|
|
|
|
|
|
|
group "main" {
|
|
|
|
count = 1
|
|
|
|
|
|
|
|
network {
|
|
|
|
port "web_port" {
|
|
|
|
static = 8080
|
|
|
|
to = 8080
|
|
|
|
}
|
|
|
|
port "ssh_port" {
|
|
|
|
static = 2222
|
|
|
|
to = 2222
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task "server" {
|
|
|
|
driver = "docker"
|
|
|
|
config {
|
2023-10-16 14:16:18 +00:00
|
|
|
image = "lxpz/amd64_bagage:20231016-3"
|
2023-04-05 13:50:46 +00:00
|
|
|
readonly_rootfs = false
|
|
|
|
network_mode = "host"
|
|
|
|
volumes = [
|
|
|
|
"secrets/id_rsa:/id_rsa"
|
|
|
|
]
|
|
|
|
ports = [ "web_port", "ssh_port" ]
|
|
|
|
}
|
|
|
|
|
|
|
|
env {
|
|
|
|
BAGAGE_LDAP_ENDPOINT = "bottin.service.prod.consul:389"
|
|
|
|
}
|
|
|
|
|
|
|
|
resources {
|
|
|
|
memory = 200
|
|
|
|
cpu = 100
|
|
|
|
}
|
|
|
|
|
|
|
|
template {
|
|
|
|
data = "{{ key \"secrets/bagage/id_rsa\" }}"
|
|
|
|
destination = "secrets/id_rsa"
|
|
|
|
}
|
|
|
|
|
|
|
|
service {
|
|
|
|
name = "bagage-ssh"
|
|
|
|
port = "ssh_port"
|
|
|
|
address_mode = "host"
|
|
|
|
tags = [
|
|
|
|
"bagage",
|
2023-12-02 10:52:26 +00:00
|
|
|
"(diplonat (tcp_port 2222))",
|
|
|
|
"d53-a sftp.deuxfleurs.fr",
|
|
|
|
"d53-aaaa sftp.deuxfleurs.fr",
|
2023-04-05 13:50:46 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
service {
|
|
|
|
name = "bagage-webdav"
|
|
|
|
tags = [
|
|
|
|
"bagage",
|
|
|
|
"tricot bagage.deuxfleurs.fr",
|
|
|
|
"d53-cname bagage.deuxfleurs.fr",
|
|
|
|
]
|
|
|
|
port = "web_port"
|
|
|
|
address_mode = "host"
|
|
|
|
check {
|
|
|
|
type = "tcp"
|
|
|
|
port = "web_port"
|
|
|
|
address_mode = "host"
|
|
|
|
interval = "60s"
|
|
|
|
timeout = "5s"
|
|
|
|
check_restart {
|
|
|
|
limit = 3
|
|
|
|
grace = "90s"
|
|
|
|
ignore_warnings = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|