mirror of
https://github.com/FAUSheppy/no-secrets-athq-ansible
synced 2025-12-10 00:08:34 +01:00
change: use atlantis hub instead of heimdall
This commit is contained in:
@@ -121,9 +121,9 @@ keycloak_clients:
|
|||||||
master_address: "https://trackmania.atlantishq.de"
|
master_address: "https://trackmania.atlantishq.de"
|
||||||
skips:
|
skips:
|
||||||
|
|
||||||
heimdall:
|
atlantis-hub:
|
||||||
party_secret : "HISTORY_PURGED_SECRET"
|
party_secret : "HISTORY_PURGED_SECRET"
|
||||||
client_id: z_heimdall
|
client_id: z_atlantishub
|
||||||
client_secret: "HISTORY_PURGED_SECRET"
|
client_secret: "HISTORY_PURGED_SECRET"
|
||||||
redirect_uris:
|
redirect_uris:
|
||||||
- "https://hub.atlantishq.de/*"
|
- "https://hub.atlantishq.de/*"
|
||||||
|
|||||||
@@ -38,7 +38,26 @@
|
|||||||
state: directory
|
state: directory
|
||||||
with_items:
|
with_items:
|
||||||
- tmnf-replay-server
|
- tmnf-replay-server
|
||||||
- heimdall
|
- atlantis-hub
|
||||||
|
|
||||||
|
- name: Copy AtlantisHub config
|
||||||
|
copy:
|
||||||
|
src: "atlantis-hub-content/config.yaml"
|
||||||
|
dest: "/data/atlantis-hub/config.yaml"
|
||||||
|
|
||||||
|
- name: Create AtlantisHubDirectories
|
||||||
|
file:
|
||||||
|
name: "/data/atlantis-hub/{{ item }}"
|
||||||
|
state: directory
|
||||||
|
with_items:
|
||||||
|
- static-icons
|
||||||
|
- instance
|
||||||
|
- static-cache
|
||||||
|
|
||||||
|
- name: Copy AtlantisHub static icons
|
||||||
|
copy:
|
||||||
|
src: "atlantis-hub-content/static-icons/"
|
||||||
|
dest: "/data/atlantis-hub/static-icons/"
|
||||||
|
|
||||||
- name: Create compose directories
|
- name: Create compose directories
|
||||||
file:
|
file:
|
||||||
@@ -51,7 +70,7 @@
|
|||||||
- sector32
|
- sector32
|
||||||
- async-icinga
|
- async-icinga
|
||||||
- tmnf-replay-server
|
- tmnf-replay-server
|
||||||
- heimdall
|
- atlantis-hub
|
||||||
|
|
||||||
- name: Copy compose templates
|
- name: Copy compose templates
|
||||||
template:
|
template:
|
||||||
@@ -64,7 +83,7 @@
|
|||||||
- sector32
|
- sector32
|
||||||
- async-icinga
|
- async-icinga
|
||||||
- tmnf-replay-server
|
- tmnf-replay-server
|
||||||
- heimdall
|
- atlantis-hub
|
||||||
|
|
||||||
- name: Log into private registry
|
- name: Log into private registry
|
||||||
docker_login:
|
docker_login:
|
||||||
@@ -85,7 +104,7 @@
|
|||||||
- sector32
|
- sector32
|
||||||
- async-icinga
|
- async-icinga
|
||||||
- tmnf-replay-server
|
- tmnf-replay-server
|
||||||
- heimdall
|
- atlantis-hub
|
||||||
|
|
||||||
- name: OAuth2Proxy directories
|
- name: OAuth2Proxy directories
|
||||||
file:
|
file:
|
||||||
@@ -94,7 +113,7 @@
|
|||||||
recurse: yes
|
recurse: yes
|
||||||
with_items:
|
with_items:
|
||||||
- tmnf-replay-server
|
- tmnf-replay-server
|
||||||
- heimdall
|
- atlantis-hub
|
||||||
|
|
||||||
- name: include services ports
|
- name: include services ports
|
||||||
include_vars: services.yaml
|
include_vars: services.yaml
|
||||||
@@ -105,7 +124,7 @@
|
|||||||
dest: "/opt/oauth2proxy/{{ item }}/docker-compose.yaml"
|
dest: "/opt/oauth2proxy/{{ item }}/docker-compose.yaml"
|
||||||
with_items:
|
with_items:
|
||||||
- tmnf-replay-server
|
- tmnf-replay-server
|
||||||
- heimdall
|
- atlantis-hub
|
||||||
|
|
||||||
- name: Deploy OAuth2Proxy
|
- name: Deploy OAuth2Proxy
|
||||||
community.docker.docker_compose:
|
community.docker.docker_compose:
|
||||||
@@ -113,4 +132,4 @@
|
|||||||
pull: true
|
pull: true
|
||||||
with_items:
|
with_items:
|
||||||
- tmnf-replay-server
|
- tmnf-replay-server
|
||||||
- heimdall
|
- atlantis-hub
|
||||||
|
|||||||
10
roles/docker-deployments/templates/atlantis-hub.yaml
Normal file
10
roles/docker-deployments/templates/atlantis-hub.yaml
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
atlantis-hub:
|
||||||
|
image: registry.atlantishq.de/atlantis-hub:latest
|
||||||
|
restart: always
|
||||||
|
ports:
|
||||||
|
- 6011:5000
|
||||||
|
volumes:
|
||||||
|
- /data/atlantis-hub/config.yaml:/app/config.yaml
|
||||||
|
- /data/atlantis-hub/static-icons/:/app/static/icons/
|
||||||
|
- /data/atlantis-hub/sqlite-instance/:/app/instance/
|
||||||
|
- /data/atlantis-hub/static-cache/:/app/static/cache/
|
||||||
@@ -11,7 +11,7 @@ services:
|
|||||||
port: 5000
|
port: 5000
|
||||||
tmnf-replay-server:
|
tmnf-replay-server:
|
||||||
port: 5010
|
port: 5010
|
||||||
heimdall:
|
atlantis-hub:
|
||||||
port: 5011
|
port: 5011
|
||||||
paperless:
|
paperless:
|
||||||
port: 8000
|
port: 8000
|
||||||
|
|||||||
Reference in New Issue
Block a user