aboutsummaryrefslogtreecommitdiff
path: root/app/deployment/plume.hcl
diff options
context:
space:
mode:
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
+ }
+ }
+ }
+ }
+ }
+}
+