aboutsummaryrefslogtreecommitdiff
path: root/app/deployment
diff options
context:
space:
mode:
Diffstat (limited to 'app/deployment')
-rw-r--r--app/deployment/plume.hcl23
1 files changed, 10 insertions, 13 deletions
diff --git a/app/deployment/plume.hcl b/app/deployment/plume.hcl
index 88110da..9010570 100644
--- a/app/deployment/plume.hcl
+++ b/app/deployment/plume.hcl
@@ -9,11 +9,17 @@ job "plume" {
group "plume" {
count = 1
+
+ network {
+ port "web_port" { }
+ }
+
task "plume" {
driver = "docker"
config {
image = "superboum/plume:v1"
network_mode = "host"
+ ports = [ "web_port" ]
#command = "cat"
#args = [ "/dev/stdout" ]
volumes = [
@@ -22,13 +28,8 @@ job "plume" {
]
}
- artifact {
- source = "http://127.0.0.1:8500/v1/kv/configuration/plume/app.env?raw"
- destination = "secrets/app.env.tpl"
- mode = "file"
- }
template {
- source = "secrets/app.env.tpl"
+ data = file("../config/configuration/plume/app.env")
destination = "secrets/app.env"
env = true
}
@@ -36,9 +37,6 @@ job "plume" {
resources {
memory = 100
cpu = 100
- network {
- port "web_port" {}
- }
}
service {
@@ -49,12 +47,11 @@ job "plume" {
"traefik.frontend.entryPoints=https,http",
"traefik.frontend.rule=Host:plume.deuxfleurs.fr",
]
- port = 7878
- address_mode = "driver"
+ port = "web_port"
+ address_mode = "host"
check {
type = "tcp"
- port = 7878
- address_mode = "driver"
+ port = "web_port"
interval = "60s"
timeout = "5s"
check_restart {