aboutsummaryrefslogtreecommitdiff
path: root/app/dummy
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2021-12-25 19:40:30 +0100
committerAlex Auvolat <alex@adnab.me>2021-12-25 19:40:30 +0100
commit87986ff3cf98d09fa0c477c6087c95a4872a7d0e (patch)
treeeb4bdcc94ecbaf8049339cde7d5f67dbb16aa497 /app/dummy
parent85eb4d5b82a578bcbfe586a30ed258a1152578e1 (diff)
downloadinfrastructure-87986ff3cf98d09fa0c477c6087c95a4872a7d0e.tar.gz
infrastructure-87986ff3cf98d09fa0c477c6087c95a4872a7d0e.zip
Move out .hcl files specific to Neptune cluster
Diffstat (limited to 'app/dummy')
-rw-r--r--app/dummy/deploy/dummy-nginx.hcl41
-rw-r--r--app/dummy/deploy/dummy-synapse.hcl48
2 files changed, 0 insertions, 89 deletions
diff --git a/app/dummy/deploy/dummy-nginx.hcl b/app/dummy/deploy/dummy-nginx.hcl
deleted file mode 100644
index 6415010..0000000
--- a/app/dummy/deploy/dummy-nginx.hcl
+++ /dev/null
@@ -1,41 +0,0 @@
-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"
- }
- }
- }
-}
diff --git a/app/dummy/deploy/dummy-synapse.hcl b/app/dummy/deploy/dummy-synapse.hcl
deleted file mode 100644
index 2d54960..0000000
--- a/app/dummy/deploy/dummy-synapse.hcl
+++ /dev/null
@@ -1,48 +0,0 @@
-job "dummy-synapse" {
- datacenters = ["neptune"]
- type = "service"
-
- group "synapse" {
- count = 1
-
- constraint {
- attribute = "${attr.unique.hostname}"
- operator = "="
- value = "cariacou"
- }
-
- network {
- port "http" {
- to = 8008
- }
- }
-
- task "synapse" {
- driver = "docker"
- config {
- image = "matrixdotorg/synapse:v1.48.0"
- ports = [ "http" ]
- volumes = [
- "/mnt/ssd/dummy-synapse:/data",
- ]
- }
- }
-
-
- service {
- port = "http"
- tags = [
- "tricot matrix.home.adnab.me 100",
- "tricot matrix.home.adnab.me:443 100",
- "tricot matrix.home.adnab.me:8448 100",
- "tricot-add-header Access-Control-Allow-Origin *",
- ]
- check {
- type = "http"
- path = "/"
- interval = "10s"
- timeout = "2s"
- }
- }
- }
-}