diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-05-23 16:50:30 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2020-05-23 16:50:30 +0200 |
commit | 2f62cd580f797e943772d61efc6ebbe459849b0e (patch) | |
tree | 64c9a5a1c6388301af6b140d79645f3c67b4ed79 | |
parent | 0eacfa1204788d40e4f31e48f804575fc161008e (diff) | |
download | infrastructure-2f62cd580f797e943772d61efc6ebbe459849b0e.tar.gz infrastructure-2f62cd580f797e943772d61efc6ebbe459849b0e.zip |
WIP diplonat deployment
-rw-r--r-- | nomad/core.hcl | 42 | ||||
-rw-r--r-- | nomad/platoo.hcl | 1 |
2 files changed, 43 insertions, 0 deletions
diff --git a/nomad/core.hcl b/nomad/core.hcl new file mode 100644 index 0000000..d96dae3 --- /dev/null +++ b/nomad/core.hcl @@ -0,0 +1,42 @@ +job "core" { + datacenters = ["dc1"] + type = "system" + + constraint { + attribute = "${attr.cpu.arch}" + value = "amd64" + } + + update { + max_parallel = 1 + stagger = "5m" + } + + group "network" { + task "diplonat" { + driver = "docker" + + config { + image = "superboum/amd64_diplonat:v1" + network_mode = "host" + readonly_rootfs = true + } + + template { + data = <<EOH +DIPLONAT_PRIVATE_IP={{ env "attr.unique.network.ip-address" }} +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 + } + } + } +} diff --git a/nomad/platoo.hcl b/nomad/platoo.hcl index b092dca..0502934 100644 --- a/nomad/platoo.hcl +++ b/nomad/platoo.hcl @@ -12,6 +12,7 @@ job "platoo" { driver = "docker" config { image = "victormoi/platoo:v1" + force_pull = true port_map { web_port = 8080 } |