aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nomad/core.hcl42
-rw-r--r--nomad/platoo.hcl1
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
}