From 24ba9644c0e430fe2609e914501a58f5ae9a6dce Mon Sep 17 00:00:00 2001 From: Ron Shacham Date: Thu, 14 May 2020 19:01:36 -0400 Subject: [PATCH] Add xApp descriptor in repo Issue-ID: RICAPP-97 Signed-off-by: Ron Shacham Change-Id: I0a1309b9150ab21cfe4374c6c3eba622afa8ce86 --- container-tag.yaml | 2 +- xapp-descriptor/config.json | 50 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 xapp-descriptor/config.json diff --git a/container-tag.yaml b/container-tag.yaml index d0cf09e..010bf19 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.0.2' +tag: '1.0.3' diff --git a/xapp-descriptor/config.json b/xapp-descriptor/config.json new file mode 100644 index 0000000..6335fdd --- /dev/null +++ b/xapp-descriptor/config.json @@ -0,0 +1,50 @@ +{ + "xapp_name": "trafficxapp", + "version": "1.0.0", + "containers": [ + { + "name": "trafficxapp", + "image": { + "registry": "nexus3.o-ran-sc.org:10002", + "name": "o-ran-sc/ric-app-ts", + "tag": "1.0.3" + } + } + ], + "messaging": { + "ports": [ + { + "name": "rmr-data-in", + "container": "trafficxapp", + "port": 4560, + "rxMessages": [ + "TS_QUE_PREDICTION", + "A1_POLICY_REQ" + + ], + "txMessages": [ "TS_UE_LIST" ], + "policies": [20008], + "description": "rmr receive data port for mcxapp" + }, + { + "name": "rmr-route", + "container": "trafficxapp", + "port": 4561, + "description": "rmr route port for mcxapp" + } + ] + }, + "rmr": { + "protPort": "tcp:4560", + "maxSize": 2072, + "numWorkers": 1, + "txMessages": [ + "TS_UE_LIST" + ], + "rxMessages": [ + "TS_QUE_PREDICTION", + "A1_POLICY_REQ" + ], + "policies": [20008] + } + } -- 2.16.6