add and changes

This commit is contained in:
Didier Slof 2023-03-01 14:20:20 +01:00
parent e494c12473
commit e4c2e8d63a
Signed by: didier
GPG key ID: 01E71F18AA4398E5

View file

@ -16,6 +16,8 @@ x-default-endpoint: &default
group: misc group: misc
ui: &default-ui ui: &default-ui
hide-url: true hide-url: true
conditions: &default-conditions
- "[CONNECTED] == true"
x-http-endpoint: &default-http x-http-endpoint: &default-http
<<: *default <<: *default
@ -25,31 +27,6 @@ x-http-endpoint: &default-http
endpoints: endpoints:
# BASE #
- name: proxy
<<: *default-http
group: base
url: "http://proxy"
conditions:
- "[STATUS] == 503" # as there is no service hosted @ "proxy"
# CORE #
- name: ntfy
<<: *default-http
group: core
url: "https://push.ixvd.net"
- name: rabbitmq
<<: *default
group: core
url: "tcp://rabbitmq:5672"
conditions:
- "[CONNECTED] == true"
# CLOUD # # CLOUD #
- name: cryptpad - name: cryptpad
@ -68,10 +45,31 @@ endpoints:
- name: gitlab - name: gitlab
<<: *default <<: *default
group: devops group: devops
url: "tcp://gitlab:80" url: "tcp://git.ixvd.net:80"
conditions:
- "[CONNECTED] == true" # because i've implemented something in the gitlab container
- name: grafana
<<: *default-http
group: devops
url: "https://grafana.neo.faulty.nl"
ui:
hide-hostname: true
# UTILS #
- name: prometheus
<<: *default-http
group: utils
url: "http://prometheus"
- name: shlink
<<: *default
group: utils
url: "tcp://via.ixvd.net:80"
- name: ntfy
<<: *default-http
group: utils
url: "https://push.ixvd.net"
# GAMES # # GAMES #
@ -79,6 +77,21 @@ endpoints:
<<: *default <<: *default
group: games group: games
url: "tcp://ixvd.net:25565" url: "tcp://ixvd.net:25565"
# internal #
- name: rabbitmq
<<: *default
group: internal
url: "tcp://rabbitmq:5672"
conditions: conditions:
- "[CONNECTED] == true" - "[CONNECTED] == true"
- name: proxy
<<: *default-http
group: internal
url: "http://proxy"
conditions:
- "[STATUS] == 503" # as there is no service hosted @ "proxy"