From: Alexandre Huff Date: Wed, 9 Feb 2022 15:41:41 +0000 (-0300) Subject: Fix startup CrashLoopBackOff issue X-Git-Tag: 1.2.1^0 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?p=ric-app%2Fts.git;a=commitdiff_plain;h=d882f29393c41dc1a7508530baefa395a2968a04 Fix startup CrashLoopBackOff issue Traffic steering xApp crashes on startup due to a bug in xapp-frame-cpp $XAPP_DESCRIPTOR_PATH parser. This change updates both xapp-frame-cpp and RMR dependencies to fix the CrashLoopBackOff issue in TS xApp. Issue-ID: RICAPP-186 Signed-off-by: Alexandre Huff Change-Id: Ifd06d19a8200e2842b0c9e06b79d42a70f6b8041 --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 0d91221..3502dc4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,7 +34,7 @@ cmake_minimum_required( VERSION 3.14 ) set( major_version "1" ) # until CI supports auto tagging; must hard set set( minor_version "2" ) -set( patch_level "0" ) +set( patch_level "1" ) set( install_root "${CMAKE_INSTALL_PREFIX}" ) set( install_inc "/usr/local/include" ) diff --git a/Dockerfile b/Dockerfile index c684466..2e09d79 100644 --- a/Dockerfile +++ b/Dockerfile @@ -40,9 +40,9 @@ ARG SRC=. WORKDIR /playpen # versions we snarf from package cloud -ARG RMR_VER=4.7.4 +ARG RMR_VER=4.8.1 # ARG SDL_VER=1.0.4 -ARG XFCPP_VER=2.3.3 +ARG XFCPP_VER=2.3.6 # package cloud urls for wget ARG PC_REL_URL=https://packagecloud.io/o-ran-sc/release/packages/debian/stretch diff --git a/container-tag.yaml b/container-tag.yaml index 145646b..4489ca2 100644 --- a/container-tag.yaml +++ b/container-tag.yaml @@ -1,3 +1,3 @@ # this is used by CI jobs to apply a tag when it builds the image --- -tag: '1.2.0' +tag: '1.2.1' diff --git a/docs/rel-notes.rst b/docs/rel-notes.rst index ec78ea2..1c27547 100644 --- a/docs/rel-notes.rst +++ b/docs/rel-notes.rst @@ -9,6 +9,10 @@ Traffic Steering xAPP ===================== +2022 Feb 9 Version 1.2.1 +-------------------------- + Update both xapp-frame-cpp and RMR dependencies + 2021 Dec 8 Version 1.2.0 -------------------------- Update TS xApp for Release E use case and changes to integrate with RC xApp diff --git a/rmr-version.yaml b/rmr-version.yaml index dbec252..802fbb9 100644 --- a/rmr-version.yaml +++ b/rmr-version.yaml @@ -1,3 +1,3 @@ # Communicate to CI which version of RMR to install in the build/vet environment --- -version: 4.7.4 +version: 4.8.1 diff --git a/xapp-descriptor/config.json b/xapp-descriptor/config.json index e3c33c8..e2eba42 100644 --- a/xapp-descriptor/config.json +++ b/xapp-descriptor/config.json @@ -1,13 +1,13 @@ { "xapp_name": "trafficxapp", - "version": "1.2.0", + "version": "1.2.1", "containers": [ { "name": "trafficxapp", "image": { "registry": "nexus3.o-ran-sc.org:10002", "name": "o-ran-sc/ric-app-ts", - "tag": "1.2.0" + "tag": "1.2.1" } } ],