Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[submodule "dependencies/git/opentracing-cpp"]
path = dependencies/git/opentracing-cpp
url = https://github.com/opentracing/opentracing-cpp
[submodule "dependencies/git/zlib"]
path = dependencies/git/zlib
url = https://github.com/madler/zlib
Expand Down Expand Up @@ -139,9 +136,6 @@
[submodule "dependencies/git/ngx_http_redis"]
path = dependencies/git/ngx_http_redis
url = https://github.com/osokin/ngx_http_redis
[submodule "dependencies/git/nginx-opentracing"]
path = dependencies/git/nginx-opentracing
url = https://github.com/opentracing-contrib/nginx-opentracing
[submodule "dependencies/git/apicast-nginx-module"]
path = dependencies/git/apicast-nginx-module
url = https://github.com/3scale/apicast-nginx-module
Expand Down
2 changes: 0 additions & 2 deletions Brewfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
tap "3scale/openresty"
tap "3scale/opentracing"

brew "3scale/opentracing/openresty", args: ["with-debug"], link: true
brew "3scale/openresty/luarocks", link: true
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Added the `APICAST_HTTPS_VERIFY_CLIENT` variable to allow configuration of the `ssl_verify_client` directive. [PR #1491](https://github.com/3scale/APIcast/pull/1491) [THREESCALE-10156](https://issues.redhat.com/browse/THREESCALE-10156)
- Add `APICAST_LUA_SOCKET_KEEPALIVE_REQUESTS` to limit the number of requests a single keepalive socket can handle [PR #1496](https://github.com/3scale/APIcast/pull/1496) [THREESCALE-11321](https://issues.redhat.com/browse/THREESCALE-11321)
- Replace internal OPENSSL module with lua-resty-openssl [PR #1502](https://github.com/3scale/APIcast/pull/1502) [THREESCALE-11412](https://issues.redhat.com/browse/THREESCALE-11412)
- Remove opentracing support [PR #1520](https://github.com/3scale/APIcast/pull/1520) [THREESCALE-11603](https://issues.redhat.com/browse/THREESCALE-11603)

## [3.15.0] 2024-04-04

Expand Down
40 changes: 1 addition & 39 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,11 @@ RUN yum-builddep --assumeyes SPECS/openresty-zlib.spec
COPY dependencies/git/zlib ${RPMBUILD_ROOT}/SOURCES/zlib-1.2.11
RUN rpmbuild -ba SPECS/openresty-zlib.spec


FROM rpm-builder as opentracing-cpp

COPY dependencies/rpm-specs/opentracing-cpp/opentracing-cpp.spec ${RPMBUILD_ROOT}/SPECS/opentracing-cpp.spec
RUN yum-builddep --assumeyes SPECS/opentracing-cpp.spec

COPY dependencies/git/opentracing-cpp ${RPMBUILD_ROOT}/SOURCES/opentracing-cpp-1.3.0
RUN rpmbuild -ba SPECS/opentracing-cpp.spec


FROM rpm-builder as openresty

# Copy *.rpm files from earlier stages to /tmp/ so we can install RPMs
COPY --from=openresty-pcre /root/rpmbuild/RPMS /tmp/openresty-pcre/RPMS
COPY --from=openresty-zlib /root/rpmbuild/RPMS /tmp/openresty-zlib/RPMS
COPY --from=opentracing-cpp /root/rpmbuild/RPMS /tmp/opentracing-cpp/RPMS

# TODO: fix this later - uncomment for local build
#COPY dependencies/rpm-specs/tmp/annobin-annocheck-10.67-3.el8.x86_64.rpm /tmp/annobin-annocheck-10.67-3.el8.x86_64.rpm
Expand All @@ -55,9 +44,7 @@ RUN yum localinstall --assumeyes \
/tmp/openresty-pcre/RPMS/`arch`/openresty-pcre-8.44-126.el8.`arch`.rpm \
/tmp/openresty-pcre/RPMS/`arch`/openresty-pcre-devel-8.44-126.el8.`arch`.rpm \
/tmp/openresty-zlib/RPMS/`arch`/openresty-zlib-1.2.11-122.el8.`arch`.rpm \
/tmp/openresty-zlib/RPMS/`arch`/openresty-zlib-devel-1.2.11-122.el8.`arch`.rpm \
/tmp/opentracing-cpp/RPMS/`arch`/libopentracing-cpp1-1.3.0-132.el8.`arch`.rpm \
/tmp/opentracing-cpp/RPMS/`arch`/opentracing-cpp-devel-1.3.0-132.el8.`arch`.rpm
/tmp/openresty-zlib/RPMS/`arch`/openresty-zlib-devel-1.2.11-122.el8.`arch`.rpm

COPY dependencies/rpm-specs/openresty/openresty.spec ${RPMBUILD_ROOT}/SPECS/openresty.spec
RUN yum-builddep --assumeyes SPECS/openresty.spec
Expand Down Expand Up @@ -105,7 +92,6 @@ COPY dependencies/git/set-misc-nginx-module ${RPMBUILD_ROOT}/SOURCES/set-misc-ng
COPY dependencies/git/srcache-nginx-module ${RPMBUILD_ROOT}/SOURCES/srcache-nginx-module-v0.32
COPY dependencies/git/stream-lua-nginx-module ${RPMBUILD_ROOT}/SOURCES/stream-lua-nginx-module-v0.0.9
COPY dependencies/git/xss-nginx-module ${RPMBUILD_ROOT}/SOURCES/xss-nginx-module-v0.06
COPY dependencies/git/nginx-opentracing ${RPMBUILD_ROOT}/SOURCES/nginx-opentracing-v0.3.0
COPY dependencies/git/apicast-nginx-module ${RPMBUILD_ROOT}/SOURCES/apicast-nginx-module-v0.4
COPY dependencies/git/grpc ${RPMBUILD_ROOT}/SOURCES/grpc-v1.49.2
COPY dependencies/git/opentelemetry-proto ${RPMBUILD_ROOT}/SOURCES/opentelemetry-proto-v0.19.0
Expand Down Expand Up @@ -136,19 +122,15 @@ COPY dependencies/rpm-specs/luarocks/luarocks.spec ${RPMBUILD_ROOT}/SPECS/luaroc
ARG OPENRESTY_RPM_VERSION="1.19.3-123.el8"
COPY --from=openresty-pcre /root/rpmbuild/RPMS /tmp/openresty-pcre/RPMS
COPY --from=openresty-zlib /root/rpmbuild/RPMS /tmp/openresty-zlib/RPMS
COPY --from=opentracing-cpp /root/rpmbuild/RPMS /tmp/opentracing-cpp/RPMS
COPY --from=openresty /root/rpmbuild/RPMS /tmp/openresty/RPMS
RUN yum localinstall --assumeyes \
/tmp/openresty-pcre/RPMS/`arch`/openresty-pcre-8.44-126.el8.`arch`.rpm \
/tmp/openresty-pcre/RPMS/`arch`/openresty-pcre-devel-8.44-126.el8.`arch`.rpm \
/tmp/openresty-zlib/RPMS/`arch`/openresty-zlib-1.2.11-122.el8.`arch`.rpm \
/tmp/openresty-zlib/RPMS/`arch`/openresty-zlib-devel-1.2.11-122.el8.`arch`.rpm \
/tmp/opentracing-cpp/RPMS/`arch`/libopentracing-cpp1-1.3.0-132.el8.`arch`.rpm \
/tmp/opentracing-cpp/RPMS/`arch`/opentracing-cpp-devel-1.3.0-132.el8.`arch`.rpm \
/tmp/openresty/RPMS/noarch/openresty-resty-${OPENRESTY_RPM_VERSION}.noarch.rpm \
/tmp/openresty/RPMS/noarch/openresty-opm-${OPENRESTY_RPM_VERSION}.noarch.rpm \
/tmp/openresty/RPMS/`arch`/openresty-opentelemetry-${OPENRESTY_RPM_VERSION}.`arch`.rpm \
/tmp/openresty/RPMS/`arch`/openresty-opentracing-${OPENRESTY_RPM_VERSION}.`arch`.rpm \
/tmp/openresty/RPMS/`arch`/openresty-${OPENRESTY_RPM_VERSION}.`arch`.rpm

RUN yum-builddep --assumeyes SPECS/luarocks.spec
Expand Down Expand Up @@ -178,7 +160,6 @@ ARG LUAROCKS_VERSION="2.3.0-105.el8"
ARG OPENRESTY_RPM_VERSION="1.19.3-123.el8"
COPY --from=openresty-pcre /root/rpmbuild/RPMS /tmp/openresty-pcre/RPMS
COPY --from=openresty-zlib /root/rpmbuild/RPMS /tmp/openresty-zlib/RPMS
COPY --from=opentracing-cpp /root/rpmbuild/RPMS /tmp/opentracing-cpp/RPMS
COPY --from=openresty /root/rpmbuild/RPMS /tmp/openresty/RPMS
COPY --from=luarocks /root/rpmbuild/RPMS /tmp/luarocks/RPMS

Expand All @@ -187,12 +168,9 @@ RUN yum localinstall --assumeyes \
/tmp/openresty-pcre/RPMS/`arch`/openresty-pcre-devel-8.44-126.el8.`arch`.rpm \
/tmp/openresty-zlib/RPMS/`arch`/openresty-zlib-1.2.11-122.el8.`arch`.rpm \
/tmp/openresty-zlib/RPMS/`arch`/openresty-zlib-devel-1.2.11-122.el8.`arch`.rpm \
/tmp/opentracing-cpp/RPMS/`arch`/libopentracing-cpp1-1.3.0-132.el8.`arch`.rpm \
/tmp/opentracing-cpp/RPMS/`arch`/opentracing-cpp-devel-1.3.0-132.el8.`arch`.rpm \
/tmp/openresty/RPMS/noarch/openresty-resty-${OPENRESTY_RPM_VERSION}.noarch.rpm \
/tmp/openresty/RPMS/noarch/openresty-opm-${OPENRESTY_RPM_VERSION}.noarch.rpm \
/tmp/openresty/RPMS/`arch`/openresty-opentelemetry-${OPENRESTY_RPM_VERSION}.`arch`.rpm \
/tmp/openresty/RPMS/`arch`/openresty-opentracing-${OPENRESTY_RPM_VERSION}.`arch`.rpm \
/tmp/openresty/RPMS/`arch`/openresty-${OPENRESTY_RPM_VERSION}.`arch`.rpm \
/tmp/luarocks/RPMS/`arch`/luarocks-${LUAROCKS_VERSION}.`arch`.rpm

Expand All @@ -219,7 +197,6 @@ ARG GATEWAY_ROCKSPECS_NATIVE_VERSION="1.0.0-123.el8"

COPY --from=openresty-pcre /root/rpmbuild/RPMS /tmp/openresty-pcre/RPMS
COPY --from=openresty-zlib /root/rpmbuild/RPMS /tmp/openresty-zlib/RPMS
COPY --from=opentracing-cpp /root/rpmbuild/RPMS /tmp/opentracing-cpp/RPMS
COPY --from=openresty /root/rpmbuild/RPMS /tmp/openresty/RPMS
COPY --from=luarocks /root/rpmbuild/RPMS /tmp/luarocks/RPMS
COPY --from=gateway-rockspecs-native /root/rpmbuild/RPMS /tmp/gateway-rockspecs-native/RPMS
Expand All @@ -229,12 +206,9 @@ RUN yum localinstall --assumeyes \
/tmp/openresty-pcre/RPMS/`arch`/openresty-pcre-devel-8.44-126.el8.`arch`.rpm \
/tmp/openresty-zlib/RPMS/`arch`/openresty-zlib-1.2.11-122.el8.`arch`.rpm \
/tmp/openresty-zlib/RPMS/`arch`/openresty-zlib-devel-1.2.11-122.el8.`arch`.rpm \
/tmp/opentracing-cpp/RPMS/`arch`/libopentracing-cpp1-1.3.0-132.el8.`arch`.rpm \
/tmp/opentracing-cpp/RPMS/`arch`/opentracing-cpp-devel-1.3.0-132.el8.`arch`.rpm \
/tmp/openresty/RPMS/noarch/openresty-resty-${OPENRESTY_RPM_VERSION}.noarch.rpm \
/tmp/openresty/RPMS/noarch/openresty-opm-${OPENRESTY_RPM_VERSION}.noarch.rpm \
/tmp/openresty/RPMS/`arch`/openresty-opentelemetry-${OPENRESTY_RPM_VERSION}.`arch`.rpm \
/tmp/openresty/RPMS/`arch`/openresty-opentracing-${OPENRESTY_RPM_VERSION}.`arch`.rpm \
/tmp/openresty/RPMS/`arch`/openresty-${OPENRESTY_RPM_VERSION}.`arch`.rpm \
/tmp/luarocks/RPMS/`arch`/luarocks-${LUAROCKS_VERSION}.`arch`.rpm \
/tmp/gateway-rockspecs-native/RPMS/`arch`/gateway-rockspecs-native-${GATEWAY_ROCKSPECS_NATIVE_VERSION}.`arch`.rpm
Expand Down Expand Up @@ -274,7 +248,6 @@ ARG OPENRESTY_RPM_VERSION="1.19.3-123.el8"
ARG LUAROCKS_VERSION="2.3.0-105.el8"
ARG GATEWAY_ROCKSPECS_VERSION="2.10.0-102.el8"
ARG GATEWAY_ROCKSPECS_NATIVE_VERSION="1.0.0-123.el8"
ARG JAEGERTRACING_CPP_CLIENT_RPM_VERSION="0.3.1-16.el8"

# Copy the upstream sources from cachito integration
COPY gateway /opt/app-root/src
Expand All @@ -294,7 +267,6 @@ RUN yum install --assumeyes gcc-toolset-12-annobin-annocheck
# Copy *.rpm files from earlier stages to /tmp/ so we can install RPMs
COPY --from=openresty-pcre /root/rpmbuild/RPMS /tmp/openresty-pcre/RPMS
COPY --from=openresty-zlib /root/rpmbuild/RPMS /tmp/openresty-zlib/RPMS
COPY --from=opentracing-cpp /root/rpmbuild/RPMS /tmp/opentracing-cpp/RPMS
COPY --from=openresty /root/rpmbuild/RPMS /tmp/openresty/RPMS
COPY --from=luarocks /root/rpmbuild/RPMS /tmp/luarocks/RPMS
COPY --from=gateway-rockspecs-native /root/rpmbuild/RPMS /tmp/gateway-rockspecs-native/RPMS
Expand All @@ -305,24 +277,14 @@ RUN yum localinstall --assumeyes \
/tmp/openresty-pcre/RPMS/`arch`/openresty-pcre-devel-8.44-126.el8.`arch`.rpm \
/tmp/openresty-zlib/RPMS/`arch`/openresty-zlib-1.2.11-122.el8.`arch`.rpm \
/tmp/openresty-zlib/RPMS/`arch`/openresty-zlib-devel-1.2.11-122.el8.`arch`.rpm \
/tmp/opentracing-cpp/RPMS/`arch`/libopentracing-cpp1-1.3.0-132.el8.`arch`.rpm \
/tmp/opentracing-cpp/RPMS/`arch`/opentracing-cpp-devel-1.3.0-132.el8.`arch`.rpm \
/tmp/openresty/RPMS/noarch/openresty-resty-${OPENRESTY_RPM_VERSION}.noarch.rpm \
/tmp/openresty/RPMS/noarch/openresty-opm-${OPENRESTY_RPM_VERSION}.noarch.rpm \
/tmp/openresty/RPMS/`arch`/openresty-opentelemetry-${OPENRESTY_RPM_VERSION}.`arch`.rpm \
/tmp/openresty/RPMS/`arch`/openresty-opentracing-${OPENRESTY_RPM_VERSION}.`arch`.rpm \
/tmp/openresty/RPMS/`arch`/openresty-${OPENRESTY_RPM_VERSION}.`arch`.rpm \
/tmp/luarocks/RPMS/`arch`/luarocks-${LUAROCKS_VERSION}.`arch`.rpm \
/tmp/gateway-rockspecs-native/RPMS/`arch`/gateway-rockspecs-native-${GATEWAY_ROCKSPECS_NATIVE_VERSION}.`arch`.rpm \
/tmp/gateway-rockspecs/RPMS/noarch/gateway-rockspecs-${GATEWAY_ROCKSPECS_VERSION}.noarch.rpm

# FIXME/Yorgos: see if this is still required
#RUN PKGS="jaegertracing-cpp-client-${JAEGERTRACING_CPP_CLIENT_RPM_VERSION}" && \
# mkdir -p "$HOME" && \
# yum -y --setopt=tsflags=nodocs install $PKGS && \
# rpm -V $PKGS && \
# yum clean all -y

RUN mkdir -p /opt/app-root/src/logs && \
useradd -u 1001 -r -g 0 -d ${HOME} -s /sbin/nologin -c "Default Application User" default && \
rm -r /usr/local/openresty/nginx/logs && \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN dnf install -y 'dnf-command(config-manager)'

RUN yum config-manager --add-repo http://packages.dev.3sca.net/dev_packages_3sca_net.repo

RUN PKGS="openresty-resty-${OPENRESTY_RPM_VERSION} openresty-opentelemetry-${OPENRESTY_RPM_VERSION} openresty-opentracing-${OPENRESTY_RPM_VERSION} openresty-${OPENRESTY_RPM_VERSION} luarocks-${LUAROCKS_VERSION} opentracing-cpp-devel-1.3.0 libopentracing-cpp1-1.3.0 jaegertracing-cpp-client-${JAEGERTRACING_CPP_CLIENT_RPM_VERSION}" && \
RUN PKGS="openresty-resty-${OPENRESTY_RPM_VERSION} openresty-opentelemetry-${OPENRESTY_RPM_VERSION} openresty-${OPENRESTY_RPM_VERSION} luarocks-${LUAROCKS_VERSION}" && \
mkdir -p "$HOME" && \
yum -y --setopt=tsflags=nodocs install $PKGS && \
rpm -V $PKGS && \
Expand Down
6 changes: 1 addition & 5 deletions Dockerfile.devel
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,7 @@ RUN yum config-manager --add-repo http://packages.dev.3sca.net/dev_packages_3sca
RUN yum install -y \
openresty-${OPENRESTY_RPM_VERSION} \
openresty-resty-${OPENRESTY_RPM_VERSION} \
openresty-opentelemetry-${OPENRESTY_RPM_VERSION} \
openresty-opentracing-${OPENRESTY_RPM_VERSION} \
opentracing-cpp-devel-1.3.0 \
libopentracing-cpp1-1.3.0 \
jaegertracing-cpp-client-${JAEGERTRACING_CPP_CLIENT_RPM_VERSION}
openresty-opentelemetry-${OPENRESTY_RPM_VERSION}

RUN ln -sf /dev/stdout /usr/local/openresty/nginx/logs/access.log \
&& ln -sf /dev/stderr /usr/local/openresty/nginx/logs/error.log \
Expand Down
3 changes: 0 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,6 @@ gateway-logs: export IMAGE_NAME = does-not-matter
gateway-logs:
$(DOCKER) compose logs gateway

opentracing-gateway: ## run gateway instrumented with opentracing
$(DOCKER) compose run opentracing-instrumented-gateway

test-runtime-image: export IMAGE_NAME ?= $(RUNTIME_IMAGE)
test-runtime-image: clean-containers ## Smoke test the runtime image. Pass any docker image in IMAGE_NAME parameter.
$(DOCKER) compose --version
Expand Down
40 changes: 14 additions & 26 deletions dependencies/rpm-specs/openresty/openresty.spec
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,11 @@ Source40: set-misc-nginx-module-v0.32.tar.gz
Source41: srcache-nginx-module-v0.32.tar.gz
Source42: stream-lua-nginx-module-v0.0.9.tar.gz
Source43: xss-nginx-module-v0.06.tar.gz
Source44: nginx-opentracing-v0.3.0.tar.gz
Source45: %{apicastModule}.tar.gz
Source46: grpc-%{grpc_version}.tar.gz
Source47: opentelemetry-cpp-%{opentelemetry_cpp_version}.tar.gz
Source48: opentelemetry-cpp-contrib-%{opentelemetry_cpp_contrib_version}.tar.gz
Source49: opentelemetry-proto-%{opentelemetry_proto_version}.tar.gz
Source44: %{apicastModule}.tar.gz
Source45: grpc-%{grpc_version}.tar.gz
Source46: opentelemetry-cpp-%{opentelemetry_cpp_version}.tar.gz
Source47: opentelemetry-cpp-contrib-%{opentelemetry_cpp_contrib_version}.tar.gz
Source48: opentelemetry-proto-%{opentelemetry_proto_version}.tar.gz

BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)

Expand All @@ -96,7 +95,6 @@ BuildRequires: gcc, gcc-c++
BuildRequires: gcc-toolset-12-gcc, gcc-toolset-12-gcc-c++
BuildRequires: openresty-zlib-devel >= 1.2.11-3
BuildRequires: openresty-pcre-devel >= 8.42-1
BuildRequires: opentracing-cpp-devel = 1.3.0
Requires: openresty-zlib >= 1.2.11-3
Requires: openresty-pcre >= 8.42-1

Expand Down Expand Up @@ -165,14 +163,6 @@ BuildArch: noarch
%description opm
This package provides the client side tool, opm, for OpenResty Pakcage Manager (OPM).

%package opentracing

Summary: Opentracing module


%description opentracing
This package provides the opentracing module in Openresty.

%package opentelemetry

Summary: Opentelemetry module
Expand All @@ -183,10 +173,10 @@ This package provides the opentelemetry module in Openresty.
%prep
ls -la %{_sourcedir}
%setup -q -n "openresty-%{commitid}"
%setup -q -D -T -b 45 -n "openresty-%{commitid}"
%setup -q -D -T -b 46 -n "openresty-%{commitid}"
%setup -q -D -T -b 47 -n "openresty-%{commitid}"
%setup -q -D -T -a 48 -n "openresty-%{commitid}"
%setup -q -D -T -b 49 -n "openresty-%{commitid}"
%setup -q -D -T -a 47 -n "openresty-%{commitid}"
%setup -q -D -T -b 48 -n "openresty-%{commitid}"
cp %{SOURCE0} .
cp %{SOURCE1} .
cp %{SOURCE2} .
Expand Down Expand Up @@ -231,8 +221,7 @@ cp %{SOURCE40} .
cp %{SOURCE41} .
cp %{SOURCE42} .
cp %{SOURCE43} .
tar xzf %{SOURCE44}
tar xzfv %{SOURCE45}
tar xzfv %{SOURCE44}

%build
ls -al %{_builddir}
Expand Down Expand Up @@ -322,7 +311,6 @@ ls -lah bundle/
--with-http_gunzip_module \
--with-threads \
--add-module="../%{apicastModule}/" \
--add-dynamic-module="../nginx-opentracing-v0.3.0/opentracing" \
--add-dynamic-module="../opentelemetry-cpp-contrib-%{opentelemetry_cpp_contrib_version}/instrumentation/nginx" \
--with-luajit-target-strip="Q='' CFLAGS='' TARGET_XCFLAGS='-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE' TARGET_FLAGS='%{optflags}' HOST_CC='%{__cc}' STATIC_CC='%{__cc}' DYNAMIC_CC='%{__cc} -fPIC' HOST_CFLAGS='%{optflags}' HOST_LDFLAGS='%{?__global_ldflags}'"

Expand Down Expand Up @@ -395,18 +383,18 @@ rm -rf %{buildroot}
%{orprefix}/site/manifest/
%{orprefix}/site/pod/

%files opentracing
%defattr(-,root,root,-)

%{orprefix}/nginx/modules/ngx_http_opentracing_module.so

%files opentelemetry
%defattr(-,root,root,-)

%{orprefix}/nginx/modules/otel_ngx_module.so
%{lib_path}

%changelog
* Fri Nov 29 2024 An Tran <atra@redhat.com> - 1.21.4-1
- Upgraded openresty to 1.21.4.3.
- Build openresty from local patches
- Remove opentracing

* Tue Oct 24 2023 Eguzki Astiz Lezaun <eastizle@redhat.com> - 1.19.3-123
- CVE-2023-44487

Expand Down
Loading
Loading