diff --git a/cluster/prod/app/core/deploy/core-service.hcl b/cluster/prod/app/core/deploy/core-service.hcl new file mode 100644 index 0000000..d7a6299 --- /dev/null +++ b/cluster/prod/app/core/deploy/core-service.hcl @@ -0,0 +1,64 @@ +job "core-service" { + datacenters = ["neptune", "orion", "bespin"] + type = "service" + priority = 90 + + group "D53" { + count = 1 + + task "d53" { + driver = "docker" + + config { + image = "lxpz/amd64_d53:2" + network_mode = "host" + readonly_rootfs = true + volumes = [ + "secrets:/etc/d53", + ] + } + + resources { + cpu = 100 + memory = 100 + } + + restart { + interval = "3m" + attempts = 10 + delay = "15s" + mode = "delay" + } + + template { + data = "{{ key \"secrets/consul/consul-ca.crt\" }}" + destination = "secrets/consul-ca.crt" + } + + template { + data = "{{ key \"secrets/consul/consul-client.crt\" }}" + destination = "secrets/consul-client.crt" + } + + template { + data = "{{ key \"secrets/consul/consul-client.key\" }}" + destination = "secrets/consul-client.key" + } + + template { + data = <