From 3549f4de3274bf830e847e0100878cebaecd3a7b Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Fri, 25 Jul 2025 21:12:45 +0200 Subject: [PATCH] Activated domains creation for svc-db- due to that the domains are used for certificate creation and they need it to use secure communication --- filter_plugins/canonical_domains_map.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/filter_plugins/canonical_domains_map.py b/filter_plugins/canonical_domains_map.py index 7a7f5591..779bfb20 100644 --- a/filter_plugins/canonical_domains_map.py +++ b/filter_plugins/canonical_domains_map.py @@ -18,7 +18,10 @@ class FilterModule(object): seen_domains = {} for app_id, cfg in apps.items(): - if app_id.startswith(("web-")): + if app_id.startswith(( + "web-", + "svc-db-" # Database services can also be exposed to the internet. It is just listening to the port, but the domain is used for port mapping + )): if not isinstance(cfg, dict): raise AnsibleFilterError( f"Invalid configuration for application '{app_id}': "