feat: event disptacher setup

This commit is contained in:
2023-07-17 08:14:33 +00:00
parent 9817b3e843
commit 027dda4bbd
3 changed files with 17 additions and 0 deletions

View File

@@ -48,6 +48,7 @@
- atlantis-hub
- grafana
- harbor
- event-dispatcher
- name: Copy Harbor Registry config
copy:
@@ -92,6 +93,7 @@
- tmnf-replay-server
- atlantis-hub
- grafana
- event-dispatcher
- name: Copy compose templates
template:
@@ -107,6 +109,7 @@
- tmnf-replay-server
- atlantis-hub
- grafana
- event-dispatcher
- name: Log into private registry
docker_login:
@@ -138,6 +141,7 @@
- tmnf-replay-server
- atlantis-hub
- grafana
- event-dispatcher
- name: OAuth2Proxy directories
file:

View File

@@ -0,0 +1,12 @@
event-dispatcher:
ports:
- 5007:5000
image: registry.atlantishq.de/event-dispatcher
restart: always
volumes:
- "/data/event-dispatcher/instance/":"/app/instance/"
environment:
LDAP_SERVER : "{{ ldap_connection_url_ext }}"
LDAP_BIND_DN : "{{ ldap_bind_dn }}"
LDAP_BIND_PW : "{{ ldap_password }}"
LDAP_BASE_DN : "{{ ldap_user_dn }}"