From 4f23adfbb950f64ce6b94bc746b5cad5613c028e Mon Sep 17 00:00:00 2001 From: Quentin Date: Fri, 25 Dec 2020 11:48:52 +0100 Subject: Migrated plume --- app/deployment/plume.hcl | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) (limited to 'app/deployment/plume.hcl') 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 { -- cgit v1.2.3