make tests pass

Signed-off-by: msc-xdev <m.schiener@xdev-software.de>
This commit is contained in:
msc-xdev 2024-09-02 14:18:50 +02:00 committed by msc-xdev
parent 4052e858d3
commit 5c2efb4020
2 changed files with 3 additions and 1 deletions

View File

@ -23,6 +23,7 @@ def prepare_docker_compose(configs, with_trivy):
'http_port': configs['http_port'], 'http_port': configs['http_port'],
'external_redis': configs['external_redis'], 'external_redis': configs['external_redis'],
'external_database': configs['external_database'], 'external_database': configs['external_database'],
'ip_family': configs['ip_family'],
'with_trivy': with_trivy, 'with_trivy': with_trivy,
} }

View File

@ -75,7 +75,8 @@ def render_nginx_template(config_dict):
uid=DEFAULT_UID, uid=DEFAULT_UID,
gid=DEFAULT_GID, gid=DEFAULT_GID,
internal_tls=config_dict['internal_tls'], internal_tls=config_dict['internal_tls'],
metric=config_dict['metric']) metric=config_dict['metric'],
ip_family=config_dict['ip_family'])
location_file_pattern = CUSTOM_NGINX_LOCATION_FILE_PATTERN_HTTP location_file_pattern = CUSTOM_NGINX_LOCATION_FILE_PATTERN_HTTP
copy_nginx_location_configs_if_exist(nginx_template_ext_dir, nginx_confd_dir, location_file_pattern) copy_nginx_location_configs_if_exist(nginx_template_ext_dir, nginx_confd_dir, location_file_pattern)