aboutsummaryrefslogtreecommitdiff
path: root/app/dummy/deploy
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2021-12-08 12:19:08 +0100
committerAlex Auvolat <alex@adnab.me>2021-12-08 12:19:08 +0100
commit3297135a5861aa719fda4f4ed33d1d9bdb7412fd (patch)
tree5d2f2b5c325201fe356158debde41d5c9cd3ab2c /app/dummy/deploy
parent8846421cc44fc958e08a1eff2a12ebc54178731b (diff)
downloadinfrastructure-3297135a5861aa719fda4f4ed33d1d9bdb7412fd.tar.gz
infrastructure-3297135a5861aa719fda4f4ed33d1d9bdb7412fd.zip
Add tricot to replace traefik
Diffstat (limited to 'app/dummy/deploy')
-rw-r--r--app/dummy/deploy/dummy-nginx.hcl41
1 files changed, 41 insertions, 0 deletions
diff --git a/app/dummy/deploy/dummy-nginx.hcl b/app/dummy/deploy/dummy-nginx.hcl
new file mode 100644
index 0000000..6415010
--- /dev/null
+++ b/app/dummy/deploy/dummy-nginx.hcl
@@ -0,0 +1,41 @@
+job "dummy-nginx" {
+ datacenters = ["neptune"]
+ type = "service"
+
+ group "nginx" {
+ count = 1
+
+ constraint {
+ attribute = "${attr.unique.hostname}"
+ operator = "="
+ value = "carcajou"
+ }
+
+ network {
+ port "http" {
+ to = 80
+ }
+ }
+
+ task "nginx" {
+ driver = "docker"
+ config {
+ image = "nginx"
+ ports = [ "http" ]
+ }
+ }
+
+ service {
+ port = "http"
+ tags = [
+ "tricot home.adnab.me 100",
+ ]
+ check {
+ type = "http"
+ path = "/"
+ interval = "10s"
+ timeout = "2s"
+ }
+ }
+ }
+}