summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-07-12 11:41:09 -0500
committerToby Vincent <tobyv13@gmail.com>2021-07-12 11:41:09 -0500
commitfd0c08db796003cc47b10b6ba16744c4263c8dab (patch)
treefcaca432f9ee9ae00cafd4a6ab949ea4c62a8370
parent5ff7f0f16d60ca73ee8c611049845e206f218004 (diff)
consolidated configs to make moving to docker config easier
-rw-r--r--config/alpha.yml15
-rw-r--r--config/bifrost.yml15
-rw-r--r--config/pihole.yml15
-rw-r--r--config/traefik.yml49
-rw-r--r--config/viz.yml15
5 files changed, 49 insertions, 60 deletions
diff --git a/config/alpha.yml b/config/alpha.yml
deleted file mode 100644
index 24227b4..0000000
--- a/config/alpha.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-# yaml-language-server: $schema=https://json.schemastore.org/traefik-v2-file-provider.json
-
-http:
- routers:
- alpha:
- service: alpha
- entryPoints:
- - websecure
- rule: "Host(`alpha.tobyvin.com`)"
-
- services:
- alpha:
- loadBalancer:
- servers:
- - url: "http://odin.asgard:30000"
diff --git a/config/bifrost.yml b/config/bifrost.yml
deleted file mode 100644
index 616754f..0000000
--- a/config/bifrost.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-# yaml-language-server: $schema=https://json.schemastore.org/traefik-v2-file-provider.json
-
-http:
- routers:
- bifrost:
- service: bifrost
- entryPoints:
- - websecure
- rule: "Host(`bifrost.tobyvin.com`)"
-
- services:
- bifrost:
- loadBalancer:
- servers:
- - url: "http://bifrost"
diff --git a/config/pihole.yml b/config/pihole.yml
deleted file mode 100644
index 4af524d..0000000
--- a/config/pihole.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-# yaml-language-server: $schema=https://json.schemastore.org/traefik-v2-file-provider.json
-
-http:
- routers:
- pihole:
- service: pihole
- entryPoints:
- - websecure
- rule: "Host(`pihole.tobyvin.com`)"
-
- services:
- pihole:
- loadBalancer:
- servers:
- - url: "http://pi.hole"
diff --git a/config/traefik.yml b/config/traefik.yml
new file mode 100644
index 0000000..88e4c19
--- /dev/null
+++ b/config/traefik.yml
@@ -0,0 +1,49 @@
+http:
+ routers:
+ bifrost:
+ service: bifrost
+ entryPoints:
+ - websecure
+ rule: "Host(`bifrost.tobyvin.com`)"
+ pihole:
+ service: pihole
+ entryPoints:
+ - websecure
+ rule: "Host(`pihole.tobyvin.com`)"
+ portainer:
+ service: portainer
+ entryPoints:
+ - websecure
+ rule: "Host(`portainer.tobyvin.com`)"
+ viz:
+ service: viz
+ entryPoints:
+ - websecure
+ rule: "Host(`viz.tobyvin.com`)"
+ hathea:
+ service: hathea
+ entryPoints:
+ - websecure
+ rule: "Host(`foundry.tobyvin.com`) && PathPrefix(`/hathea`)"
+
+ services:
+ bifrost:
+ loadBalancer:
+ servers:
+ - url: "http://bifrost"
+ pihole:
+ loadBalancer:
+ servers:
+ - url: "http://pi.hole"
+ portainer:
+ loadBalancer:
+ servers:
+ - url: "http://portainer:9000"
+ viz:
+ loadBalancer:
+ servers:
+ - url: "http://heimdall.asgard:8080"
+ hathea:
+ loadBalancer:
+ servers:
+ - url: "http://hathea:30000"
diff --git a/config/viz.yml b/config/viz.yml
deleted file mode 100644
index eb76884..0000000
--- a/config/viz.yml
+++ /dev/null
@@ -1,15 +0,0 @@
-# yaml-language-server: $schema=https://json.schemastore.org/traefik-v2-file-provider.json
-
-http:
- routers:
- viz:
- service: viz
- entryPoints:
- - websecure
- rule: "Host(`viz.tobyvin.com`)"
-
- services:
- viz:
- loadBalancer:
- servers:
- - url: "http://heimdall.asgard:8080"