From 60dc1b21a1fdbebae663790e1e07afe704758d61 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Sat, 25 Dec 2021 19:40:51 +0100 Subject: [PATCH] Add hcl files in here for staging cluster --- app/core/deploy/core.hcl | 50 +++++++ app/dummy/deploy/dummy-nginx.hcl | 41 ++++++ app/dummy/deploy/dummy-synapse.hcl | 48 +++++++ app/frontend/deploy/frontend-tricot.hcl | 67 +++++++++ app/garage-staging/config/garage.toml | 23 ++++ app/garage-staging/deploy/garage.hcl | 130 ++++++++++++++++++ .../secrets/garage-staging/rpc_secret | 1 + app/secretmgr.py | 1 + configuration.nix | 9 +- 9 files changed, 367 insertions(+), 3 deletions(-) create mode 100644 app/core/deploy/core.hcl create mode 100644 app/dummy/deploy/dummy-nginx.hcl create mode 100644 app/dummy/deploy/dummy-synapse.hcl create mode 100644 app/frontend/deploy/frontend-tricot.hcl create mode 100644 app/garage-staging/config/garage.toml create mode 100644 app/garage-staging/deploy/garage.hcl create mode 100644 app/garage-staging/secrets/garage-staging/rpc_secret create mode 120000 app/secretmgr.py diff --git a/app/core/deploy/core.hcl b/app/core/deploy/core.hcl new file mode 100644 index 0000000..67a3e64 --- /dev/null +++ b/app/core/deploy/core.hcl @@ -0,0 +1,50 @@ +job "core" { + datacenters = ["dc1", "neptune"] + type = "system" + priority = 90 + + constraint { + attribute = "${attr.cpu.arch}" + value = "amd64" + } + + update { + max_parallel = 1 + stagger = "1m" + } + + group "network" { + task "diplonat" { + driver = "docker" + + config { + image = "lxpz/amd64_diplonat:2" + network_mode = "host" + readonly_rootfs = true + privileged = true + } + + restart { + interval = "30m" + attempts = 2 + delay = "15s" + mode = "delay" + } + + template { + data = <