From e6e8bbce7de0091743e453727947bef377e9e929 Mon Sep 17 00:00:00 2001 From: Amirsalar Safaei Date: Sat, 30 Aug 2025 16:57:29 +0330 Subject: [PATCH] feat(docker): add otel_connection_uri to entrypoint --- .github/helpers/docker/docker-entrypoint.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/helpers/docker/docker-entrypoint.sh b/.github/helpers/docker/docker-entrypoint.sh index 27b36e5b..103ec5ab 100755 --- a/.github/helpers/docker/docker-entrypoint.sh +++ b/.github/helpers/docker/docker-entrypoint.sh @@ -291,6 +291,12 @@ then echo "postgresql_connection_uri: $POSTGRESQL_CONNECTION_URI" >> $CONFIG_FILE fi + # check if the otel collector connection uri is passed + if [ ! -z $OTEL_COLLECTOR_CONNECTION_URI ] + then + echo "otel_collector_connection_uri: $OTEL_COLLECTOR_CONNECTION_URI" >> $CONFIG_FILE + fi + # THE CONFIGS BELOW ARE DEPRECATED---------------- # check if postgresql key value table name is passed