aboutsummaryrefslogtreecommitdiff
path: root/cluster/staging/app/garage/deploy/garage.hcl
blob: 77d509265340541b451d5e3cd26e4c06bb150650 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
job "garage-staging" {
  type = "system"
  #datacenters = [ "neptune", "pluton" ]
  datacenters = [ "neptune" ]

  priority = 80

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

  group "garage-staging" {
    network {
      port "s3" { static = 3990 }
      port "rpc" { static = 3991 }
      port "web" { static = 3992 }
      port "k2v" { static = 3993 }
      port "admin" { static = 3909 }
    }

    update {
      max_parallel = 1
      min_healthy_time = "30s"
      healthy_deadline = "5m"
    }

    # task "repair" {
    #   lifecycle {
    #     hook = "prestart"
    #     sidecar = false
    #   }

    #   driver = "docker"

    #   config {
    #     image = "dxflrs/amd64_garage:v0.7.99-k2v"
    #     command = "/garage"
    #     args = [ "offline-repair", "--yes", "object_counters" ]
    #     network_mode = "host"
    #     volumes = [
    #       "/mnt/storage/garage-staging/data:/data",
    #       "/mnt/ssd/garage-staging/meta:/meta",
    #       "secrets/garage.toml:/etc/garage.toml",
    #     ]
    #   }

    #   template {
    #     data = file("../config/garage.toml")
    #     destination = "secrets/garage.toml"
    #   }

    #   resources {
    #     memory = 2000
    #     cpu = 1000
    #   }
    # }

    task "server" {
      driver = "docker"

      config {
        image = "dxflrs/amd64_garage:8bc5caf7aa9bc0e27b741c68113cb7fdde2d54e6"
        command = "/garage"
        args = [ "server" ]
        network_mode = "host"
        volumes = [
          "/mnt/storage/garage-staging/data:/data",
          "/mnt/ssd/garage-staging/meta:/meta",
          "secrets/garage.toml:/etc/garage.toml",
          "secrets:/etc/garage",
        ]
      }

      template {
        data = file("../config/garage.toml")
        destination = "secrets/garage.toml"
      }

      template {
        data = "{{ key \"secrets/consul/consul-ca.crt\" }}"
        destination = "secrets/consul-ca.crt"
      }

      template {
        data = "{{ key \"secrets/consul/consul-client.crt\" }}"
        destination = "secrets/consul-client.crt"
      }

      template {
        data = "{{ key \"secrets/consul/consul-client.key\" }}"
        destination = "secrets/consul-client.key"
      }

      template {
        data = <<EOH
RUST_LOG=garage=debug
EOH
        destination = "secrets/env"
        env = true
      }

      resources {
        memory = 2000
        memory_max = 3000
        cpu = 500
      }

      kill_signal = "SIGINT"
      kill_timeout = "20s"

      service {
        tags = [
          "garage-staging-api",
          "tricot garage-staging.home.adnab.me",
          "tricot garage.staging.deuxfleurs.org",
          "tricot-add-header Access-Control-Allow-Origin *",
        ]
        port = 3990
        address_mode = "driver"
        name = "garage-staging-api"
        check {
          type = "tcp"
          port = 3990
          address_mode = "driver"
          interval = "60s"
          timeout = "5s"
          check_restart {
            limit = 3
            grace = "90s"
            ignore_warnings = false
          }
        }
      }

      service {
        tags = [
          "garage-staging-k2v-api",
          "tricot k2v.staging.deuxfleurs.org",
          "tricot-add-header Access-Control-Allow-Origin *",
        ]
        port = 3993
        address_mode = "driver"
        name = "garage-staging-k2v-api"
        # check {
        #   type = "tcp"
        #   port = 3993
        #   address_mode = "driver"
        #   interval = "60s"
        #   timeout = "5s"
        #   check_restart {
        #     limit = 3
        #     grace = "90s"
        #     ignore_warnings = false
        #   }
        # }
      }

      service {
        tags = ["garage-staging-rpc"]
        port = 3991
        address_mode = "driver"
        name = "garage-staging-rpc"
        check {
          type = "tcp"
          port = 3991
          address_mode = "driver"
          interval = "60s"
          timeout = "5s"
          check_restart {
            limit = 3
            grace = "90s"
            ignore_warnings = false
          }
        }
      }

      service {
        tags = [
            "garage-staging-web",
            "tricot *.web.staging.deuxfleurs.org",
            "tricot staging.deuxfleurs.org",
            "tricot matrix.home.adnab.me/.well-known/matrix/server",
            "tricot-add-header Access-Control-Allow-Origin *",
        ]
        port = 3992
        address_mode = "driver"
        name = "garage-staging-web"
        check {
          type = "tcp"
          port = 3992
          address_mode = "driver"
          interval = "60s"
          timeout = "5s"
          check_restart {
            limit = 3
            grace = "90s"
            ignore_warnings = false
          }
        }
      }

      service {
        tags = [
          "garage-staging-admin",
        ]
        port = 3909
        address_mode = "driver"
        name = "garage-staging-admin"
      }

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