aboutsummaryrefslogblamecommitdiff
path: root/app/deployment/plume.hcl
blob: 88110da3f9578cbffa6d5d0dbd60bddb4cadfbee (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                                  
                                    
                             


































                                                                              

                               

                      

                                 












                                   
job "plume" {
  datacenters = ["dc1"]
  type = "service"

  constraint {
    attribute = "${attr.cpu.arch}"
    value     = "amd64"
  }

  group "plume" {
    count = 1
    task "plume" {
      driver = "docker"
      config {
        image = "superboum/plume:v1"
        network_mode = "host"
        #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 = 7878
        address_mode = "driver"
        check {
          type = "tcp"
          port = 7878
          address_mode = "driver"
          interval = "60s"
          timeout = "5s"
          check_restart {
            limit = 3
            grace = "600s"
            ignore_warnings = false
          }
        }
      }
    }
  }
}