aboutsummaryrefslogtreecommitdiff
path: root/app/dummy
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2021-12-25 19:40:51 +0100
committerAlex Auvolat <alex@adnab.me>2021-12-25 19:40:51 +0100
commit60dc1b21a1fdbebae663790e1e07afe704758d61 (patch)
tree0d96ce82707c6e9caae59deadbdea245f6830e73 /app/dummy
parente77254e97f16dfec41277e46ba3ddc7e2bd3d664 (diff)
downloadnixcfg-60dc1b21a1fdbebae663790e1e07afe704758d61.tar.gz
nixcfg-60dc1b21a1fdbebae663790e1e07afe704758d61.zip
Add hcl files in here for staging 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, 89 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"
+ }
+ }
+ }
+}
diff --git a/app/dummy/deploy/dummy-synapse.hcl b/app/dummy/deploy/dummy-synapse.hcl
new file mode 100644
index 0000000..2d54960
--- /dev/null
+++ b/app/dummy/deploy/dummy-synapse.hcl
@@ -0,0 +1,48 @@
+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"
+ }
+ }
+ }
+}