aboutsummaryrefslogtreecommitdiff
path: root/app/deployment/plume.hcl
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2020-09-21 16:29:49 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2020-09-21 16:29:49 +0200
commit9e4e2f7b99ab8816afcf51e9575d75ccf73fb23f (patch)
tree7219b5a11bec1ce2aa439aa463f414b2f4408184 /app/deployment/plume.hcl
parent09fc30214da3febbf9c06a81bd52701f370be67e (diff)
downloadinfrastructure-9e4e2f7b99ab8816afcf51e9575d75ccf73fb23f.tar.gz
infrastructure-9e4e2f7b99ab8816afcf51e9575d75ccf73fb23f.zip
Add plume
Diffstat (limited to 'app/deployment/plume.hcl')
-rw-r--r--app/deployment/plume.hcl71
1 files changed, 71 insertions, 0 deletions
diff --git a/app/deployment/plume.hcl b/app/deployment/plume.hcl
new file mode 100644
index 0000000..89afcf5
--- /dev/null
+++ b/app/deployment/plume.hcl
@@ -0,0 +1,71 @@
+job "plume" {
+ datacenters = ["dc1"]
+ type = "service"
+
+ constraint {
+ attribute = "${attr.cpu.arch}"
+ value = "amd64"
+ }
+
+ group "plume" {
+ count = 1
+ task "plume" {
+ driver = "docker"
+ config {
+ image = "plumeorg/plume:v0.5.0"
+ port_map {
+ web_port = 7878
+ }
+ #command = "cat"
+ #args = [ "/dev/stdout" ]
+ volumes = [
+ "/mnt/glusterfs/plume/media:/app/static/media",
+ "/mnt/glusterfs/plume/search:/app/search_index"
+ ]
+ }
+
+ 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"
+ destination = "secrets/app.env"
+ env = true
+ }
+
+ resources {
+ memory = 100
+ cpu = 100
+ network {
+ port "web_port" {}
+ }
+ }
+
+ service {
+ name = "plume"
+ tags = [
+ "plume",
+ "traefik.enable=true",
+ "traefik.frontend.entryPoints=https,http",
+ "traefik.frontend.rule=Host:plume.deuxfleurs.fr",
+ ]
+ port = "web_port"
+ address_mode = "host"
+ check {
+ type = "tcp"
+ port = "web_port"
+ interval = "60s"
+ timeout = "5s"
+ check_restart {
+ limit = 3
+ grace = "600s"
+ ignore_warnings = false
+ }
+ }
+ }
+ }
+ }
+}
+