WIP diplonat deployment

This commit is contained in:
Quentin 2020-05-23 16:50:30 +02:00
parent 0eacfa1204
commit 2f62cd580f
2 changed files with 43 additions and 0 deletions

42
nomad/core.hcl Normal file
View File

@ -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
}
}
}
}

View File

@ -12,6 +12,7 @@ job "platoo" {
driver = "docker"
config {
image = "victormoi/platoo:v1"
force_pull = true
port_map {
web_port = 8080
}