Copy RMR files from builder image in release registry.
Bump version to 1.0.2.
Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
Change-Id: I48b29fb6aea3ebc2ff5a2aaeafa940000fde4bb7
# RMR setup
RUN mkdir -p /opt/route/
-COPY --from=nexus3.o-ran-sc.org:10004/bldr-alpine3-go:5-a3.11-nng-rmr3 /usr/local/lib64/librmr_si.so /usr/local/lib64/librmr_si.so
-COPY --from=nexus3.o-ran-sc.org:10004/bldr-alpine3-go:5-a3.11-nng-rmr3 /usr/local/bin/health_ck /usr/local/bin/health_ck
+# copy rmr files from builder image in lieu of an Alpine package
+COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:3.8.2 /usr/local/lib64/librmr_si.so /usr/local/lib64/librmr_si.so
+# rmr_probe replaced health_ck
+COPY --from=nexus3.o-ran-sc.org:10002/o-ran-sc/bldr-alpine3-rmr:3.8.2 /usr/local/bin/rmr_probe /usr/local/bin/rmr_probe
ENV LD_LIBRARY_PATH /usr/local/lib/:/usr/local/lib64
COPY tests/fixtures/local.rt /opt/route/local.rt
ENV RMR_SEED_RT /opt/route/local.rt
Testing RMR Healthcheck
-----------------------
-The following instructions should deploy the QP Driver container in bare docker, and allow you to test that the rmr healthcheck is working
+The following instructions should deploy the QP Driver container in bare docker, and allow you
+to test that the rmr healthcheck is working.
::
docker build -t qpd:latest -f Dockerfile .
docker run -d --net=host -e USE_FAKE_SDL=1 qpd:latest
- docker exec -it CONTAINER_ID /usr/local/bin/health_ck -h 127.0.0.1:4562
-
-
+ docker exec -it CONTAINER_ID /usr/local/bin/rmr_probe -h 127.0.0.1:4562
:local:
+[1.0.3] - 2020-04-22
+--------------------
+
+* Upgrade to RMR version 3.8.2
+
[1.0.2] - 4/8/2020
------------------
::
setup(
name="qpdriver",
- version="1.0.2",
+ version="1.0.3",
packages=find_packages(exclude=["tests.*", "tests"]),
author="Tommy Carpenter",
description="QP Driver Xapp for traffic steering",