From 41128f4c36f79def480b8cb866205296d703f247 Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Wed, 24 Aug 2022 15:48:18 +0200 Subject: Clone core module in staging and prod, move bad stuff to experimental --- cluster/prod/app/core/deploy/core.hcl | 71 ++++++++++++++++++++++++++++++++ cluster/prod/app/secretmgr.py | 1 + cluster/prod/app/shell.nix | 1 + cluster/staging/app/core/deploy/core.hcl | 71 ++++++++++++++++++++++++++++++++ cluster/staging/app/secretmgr.py | 1 + cluster/staging/app/shell.nix | 1 + 6 files changed, 146 insertions(+) create mode 100644 cluster/prod/app/core/deploy/core.hcl create mode 120000 cluster/prod/app/secretmgr.py create mode 120000 cluster/prod/app/shell.nix create mode 100644 cluster/staging/app/core/deploy/core.hcl create mode 120000 cluster/staging/app/secretmgr.py create mode 120000 cluster/staging/app/shell.nix (limited to 'cluster') diff --git a/cluster/prod/app/core/deploy/core.hcl b/cluster/prod/app/core/deploy/core.hcl new file mode 100644 index 0000000..f57f21d --- /dev/null +++ b/cluster/prod/app/core/deploy/core.hcl @@ -0,0 +1,71 @@ +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:3" + network_mode = "host" + readonly_rootfs = true + volumes = [ + "secrets:/etc/diplonat", + ] + } + + restart { + interval = "30m" + attempts = 2 + delay = "15s" + mode = "delay" + } + + 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 = <