aboutsummaryrefslogtreecommitdiff
path: root/app/tricot/deploy/tricot.hcl
blob: ad838a830d982ed247179899e48be6bc9219e80a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
job "tricot" {
  datacenters = ["dc1", "neptune"]
  type = "system"
  priority = 90

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

  update {
    max_parallel     = 1
    stagger = "1m"
  }

  group "tricot" {
    task "tricot" {
      driver = "docker"

      config {
        image = "lxpz/amd64_tricot:4"
        network_mode = "host"
        readonly_rootfs = true
      }

      restart {
        interval = "30m"
        attempts = 2
        delay    = "15s"
        mode     = "delay"
      }

      template {
        data = <<EOH
TRICOT_NODE_NAME={{ env "attr.unique.hostname" }}
TRICOT_LETSENCRYPT_EMAIL=alex@adnab.me
RUST_LOG=tricot=debug
EOH
        destination = "secrets/env"
        env = true
      }

      resources {
        memory = 40
      }
    }
  }
}