diff options
author | Alex Auvolat <alex@adnab.me> | 2021-12-25 19:40:51 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2021-12-25 19:40:51 +0100 |
commit | 60dc1b21a1fdbebae663790e1e07afe704758d61 (patch) | |
tree | 0d96ce82707c6e9caae59deadbdea245f6830e73 /app/core | |
parent | e77254e97f16dfec41277e46ba3ddc7e2bd3d664 (diff) | |
download | nixcfg-60dc1b21a1fdbebae663790e1e07afe704758d61.tar.gz nixcfg-60dc1b21a1fdbebae663790e1e07afe704758d61.zip |
Add hcl files in here for staging cluster
Diffstat (limited to 'app/core')
-rw-r--r-- | app/core/deploy/core.hcl | 50 |
1 files changed, 50 insertions, 0 deletions
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 = <<EOH +DIPLONAT_REFRESH_TIME=60 +DIPLONAT_EXPIRATION_TIME=300 +DIPLONAT_CONSUL_NODE_NAME={{ env "attr.unique.hostname" }} +RUST_LOG=debug +EOH + destination = "secrets/env" + env = true + } + + resources { + memory = 40 + } + } + } +} |