mirror of
https://github.com/spantaleev/matrix-docker-ansible-deploy.git
synced 2024-11-06 02:37:31 +01:00
Move matrix-bot-go-neb to its own container network
This commit is contained in:
parent
867af6385a
commit
835f623bb8
@ -2100,37 +2100,29 @@ matrix_bot_go_neb_scheme: "{{ 'https' if matrix_playbook_ssl_enabled else 'http'
|
|||||||
|
|
||||||
matrix_bot_go_neb_hostname: "{{ matrix_server_fqn_bot_go_neb }}"
|
matrix_bot_go_neb_hostname: "{{ matrix_server_fqn_bot_go_neb }}"
|
||||||
|
|
||||||
matrix_bot_go_neb_container_network: "{{ matrix_nginx_proxy_container_network if matrix_playbook_reverse_proxy_type == 'playbook-managed-nginx' else 'matrix-bot-go-neb' }}"
|
matrix_bot_go_neb_systemd_required_services_list_auto: |
|
||||||
|
{{
|
||||||
|
matrix_addons_homeserver_systemd_services_list
|
||||||
|
}}
|
||||||
|
|
||||||
|
matrix_bot_go_neb_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '4050') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
|
||||||
|
|
||||||
|
matrix_bot_go_neb_container_network: "{{ matrix_addons_container_network }}"
|
||||||
|
|
||||||
matrix_bot_go_neb_container_additional_networks: |
|
matrix_bot_go_neb_container_additional_networks: |
|
||||||
{{
|
{{
|
||||||
(
|
(
|
||||||
([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network else [])
|
([] if matrix_addons_homeserver_container_network == '' else [matrix_addons_homeserver_container_network])
|
||||||
+
|
+
|
||||||
([matrix_homeserver_container_network] if matrix_homeserver_container_network != matrix_bot_go_neb_container_network else [])
|
([matrix_playbook_reverse_proxyable_services_additional_network] if matrix_playbook_reverse_proxyable_services_additional_network and matrix_bot_go_neb_container_labels_traefik_enabled else [])
|
||||||
+
|
|
||||||
([devture_postgres_container_network] if devture_postgres_enabled and devture_postgres_container_network != matrix_bot_go_neb_container_network else [])
|
|
||||||
) | unique
|
) | unique
|
||||||
}}
|
}}
|
||||||
|
|
||||||
matrix_bot_go_neb_container_http_host_bind_port: "{{ (matrix_playbook_service_host_bind_interface_prefix ~ '4050') if matrix_playbook_service_host_bind_interface_prefix else '' }}"
|
|
||||||
|
|
||||||
matrix_bot_go_neb_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}"
|
matrix_bot_go_neb_container_labels_traefik_enabled: "{{ matrix_playbook_traefik_labels_enabled }}"
|
||||||
matrix_bot_go_neb_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
|
matrix_bot_go_neb_container_labels_traefik_docker_network: "{{ matrix_playbook_reverse_proxyable_services_additional_network }}"
|
||||||
matrix_bot_go_neb_container_labels_traefik_entrypoints: "{{ devture_traefik_entrypoint_primary }}"
|
matrix_bot_go_neb_container_labels_traefik_entrypoints: "{{ devture_traefik_entrypoint_primary }}"
|
||||||
matrix_bot_go_neb_container_labels_traefik_tls_certResolver: "{{ devture_traefik_certResolver_primary }}"
|
matrix_bot_go_neb_container_labels_traefik_tls_certResolver: "{{ devture_traefik_certResolver_primary }}"
|
||||||
|
|
||||||
matrix_bot_go_neb_systemd_required_services_list: |
|
|
||||||
{{
|
|
||||||
['docker.service']
|
|
||||||
+
|
|
||||||
['matrix-' + matrix_homeserver_implementation + '.service']
|
|
||||||
+
|
|
||||||
([devture_postgres_identifier + '.service'] if devture_postgres_enabled else [])
|
|
||||||
+
|
|
||||||
(['matrix-nginx-proxy.service'] if matrix_nginx_proxy_enabled else [])
|
|
||||||
}}
|
|
||||||
|
|
||||||
######################################################################
|
######################################################################
|
||||||
#
|
#
|
||||||
# /matrix-bot-go-neb
|
# /matrix-bot-go-neb
|
||||||
|
@ -86,7 +86,10 @@ matrix_bot_go_neb_container_labels_additional_labels: ''
|
|||||||
matrix_bot_go_neb_container_extra_arguments: []
|
matrix_bot_go_neb_container_extra_arguments: []
|
||||||
|
|
||||||
# List of systemd services that matrix-bot-go-neb.service depends on
|
# List of systemd services that matrix-bot-go-neb.service depends on
|
||||||
matrix_bot_go_neb_systemd_required_services_list: ['docker.service']
|
matrix_bot_go_neb_systemd_required_services_list: "{{ matrix_bot_go_neb_systemd_required_services_list_default + matrix_bot_go_neb_systemd_required_services_list_auto + matrix_bot_go_neb_systemd_required_services_list_custom }}"
|
||||||
|
matrix_bot_go_neb_systemd_required_services_list_default: ['docker.service']
|
||||||
|
matrix_bot_go_neb_systemd_required_services_list_auto: []
|
||||||
|
matrix_bot_go_neb_systemd_required_services_list_custom: []
|
||||||
|
|
||||||
# List of systemd services that matrix-bot-go-neb.service wants
|
# List of systemd services that matrix-bot-go-neb.service wants
|
||||||
matrix_bot_go_neb_systemd_wanted_services_list: []
|
matrix_bot_go_neb_systemd_wanted_services_list: []
|
||||||
|
Loading…
Reference in New Issue
Block a user