Make Traefik labels files look better

This moves the comments from being just in Jinja,
to actually ending up in the generated `labels` file,
which makes inspection of the final result easier.

Also, some new lines were added here and there to make labels
more legible.

The generated file may still include weird new-lines due to
various `if` statements yielding content or not, but that's not so ugly
anymore - now that we have proper start/end sections that are visible in
the final `labels` file.
This commit is contained in:
Slavi Pantaleev
2024-01-15 10:41:15 +02:00
parent b9148675db
commit 48a4afb114
26 changed files with 948 additions and 419 deletions

View File

@ -5,13 +5,16 @@ traefik.enable=true
traefik.docker.network={{ matrix_corporal_container_labels_traefik_docker_network }}
{% endif %}
traefik.http.services.matrix-corporal-gateway.loadbalancer.server.port=41080
{% if matrix_corporal_container_labels_api_enabled %}
############################################################
# #
# Corporal API (/_matrix/corporal) #
# #
############################################################
traefik.http.services.matrix-corporal-api.loadbalancer.server.port=41081
{#
Corporal API (/_matrix/corporal)
#}
{% if matrix_corporal_container_labels_api_enabled %}
traefik.http.routers.matrix-corporal-api.rule={{ matrix_corporal_container_labels_api_traefik_rule }}
{% if matrix_corporal_container_labels_api_traefik_priority | int > 0 %}
@ -26,15 +29,23 @@ traefik.http.routers.matrix-corporal-api.tls={{ matrix_corporal_container_labels
traefik.http.routers.matrix-corporal-api.tls.certResolver={{ matrix_corporal_container_labels_api_traefik_tls_certResolver }}
{% endif %}
############################################################
# #
# /Corporal API (/_matrix/corporal) #
# #
############################################################
{% endif %}
{#
/Corporal API (/_matrix/corporal)
#}
{#
Matrix Client-Server API (/_matrix)
#}
{% if matrix_corporal_container_labels_matrix_client_api_enabled %}
############################################################
# #
# Matrix Client-Server API (/_matrix) #
# #
############################################################
traefik.http.services.matrix-corporal-gateway.loadbalancer.server.port=41080
traefik.http.routers.matrix-corporal-matrix-client-api.rule={{ matrix_corporal_container_labels_matrix_client_api_traefik_rule }}
{% if matrix_corporal_container_labels_matrix_client_api_traefik_priority | int > 0 %}
@ -49,10 +60,13 @@ traefik.http.routers.matrix-corporal-matrix-client-api.tls={{ matrix_corporal_co
traefik.http.routers.matrix-corporal-matrix-client-api.tls.certResolver={{ matrix_corporal_container_labels_matrix_client_api_traefik_tls_certResolver }}
{% endif %}
############################################################
# #
# /Matrix Client-Server API (/_matrix) #
# #
############################################################
{% endif %}
{#
/Matrix Client-Server API (/_matrix)
#}
{% endif %}