aboutsummaryrefslogtreecommitdiff
path: root/nomad/core.hcl
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2020-05-23 16:50:30 +0200
committerQuentin Dufour <quentin@deuxfleurs.fr>2020-05-23 16:50:30 +0200
commit2f62cd580f797e943772d61efc6ebbe459849b0e (patch)
tree64c9a5a1c6388301af6b140d79645f3c67b4ed79 /nomad/core.hcl
parent0eacfa1204788d40e4f31e48f804575fc161008e (diff)
downloadinfrastructure-2f62cd580f797e943772d61efc6ebbe459849b0e.tar.gz
infrastructure-2f62cd580f797e943772d61efc6ebbe459849b0e.zip
WIP diplonat deployment
Diffstat (limited to 'nomad/core.hcl')
-rw-r--r--nomad/core.hcl42
1 files changed, 42 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
+ }
+ }
+ }
+}