From b0405d47a6297d6b59cd293adec3eec4fd784459 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Thu, 1 Dec 2022 23:33:16 +0100 Subject: [PATCH] staging: remove hcl file for garage on docker --- .../app/garage/deploy/old-garage-docker.hcl | 220 ------------------ 1 file changed, 220 deletions(-) delete mode 100644 cluster/staging/app/garage/deploy/old-garage-docker.hcl diff --git a/cluster/staging/app/garage/deploy/old-garage-docker.hcl b/cluster/staging/app/garage/deploy/old-garage-docker.hcl deleted file mode 100644 index 32123e0..0000000 --- a/cluster/staging/app/garage/deploy/old-garage-docker.hcl +++ /dev/null @@ -1,220 +0,0 @@ -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:5b18fd8201af98798f0a47a95dfec2f3ab9777f8" - 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 = <