From: Fiete Ostkamp Date: Thu, 5 Feb 2026 07:37:42 +0000 (+0100) Subject: Add opentelemetry agent to xtesting images X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=db5974298e3451916ca635a2759192cce4ef5d09;p=integration%2Fxtesting.git Add opentelemetry agent to xtesting images Issue-ID: INT-2344 Change-Id: Iee0b4a1f7d5ed642e158f68d8d20c2d38b4e831c Signed-off-by: Fiete Ostkamp --- diff --git a/healthcheck/requirements.txt b/healthcheck/requirements.txt index ff530b7..92fde6d 100644 --- a/healthcheck/requirements.txt +++ b/healthcheck/requirements.txt @@ -16,3 +16,6 @@ pyyaml>=4.2b1 json5==0.9.11 pytz urllib3<2 +opentelemetry-distro +opentelemetry-exporter-otlp +opentelemetry-instrumentation-requests diff --git a/security/setup.cfg b/security/setup.cfg index 2ee7ec8..c9027b1 100644 --- a/security/setup.cfg +++ b/security/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = onap_security -version = 1.0.1 +version = 8.0.1 [files] packages = onap_security diff --git a/security/setup.py b/security/setup.py index 566d844..ce4c3d1 100644 --- a/security/setup.py +++ b/security/setup.py @@ -26,4 +26,4 @@ except ImportError: setuptools.setup( setup_requires=['pbr>=2.0.0'], - pbr=True) + pbr=False) diff --git a/smoke-usecases-pythonsdk/docker/Dockerfile b/smoke-usecases-pythonsdk/docker/Dockerfile index 8de2a1f..58570e9 100644 --- a/smoke-usecases-pythonsdk/docker/Dockerfile +++ b/smoke-usecases-pythonsdk/docker/Dockerfile @@ -2,8 +2,6 @@ ARG PYTHONSDK_VERSION=pythonsdk-release FROM python:3.11-alpine as pythonsdk-release -MAINTAINER Morgan Richomme - ARG ONAP_TESTS_TAG=master ARG ONAPSDK_PYTHON_PATH=/src/onapsdk @@ -17,6 +15,7 @@ RUN apk add --no-cache git && \ mkdir -p $ONAPSDK_PYTHON_PATH/clamp && \ wget -O $ONAPSDK_PYTHON_PATH/clamp/schema_details.json https://gitlab.com/Orange-OpenSource/lfn/onap/python-onapsdk/-/raw/develop/src/onapsdk/clamp/schema_details.json && \ pip3 install markupsafe==2.0.1 && \ + pip3 install opentelemetry-distro opentelemetry-exporter-otlp opentelemetry-instrumentation-requests && \ apk del .build-deps FROM pythonsdk-release as pythonsdk-develop