Add alarm message name to xapp-descriptor tx list 67/4267/2
authorLott, Christopher (cl778h) <cl778h@att.com>
Mon, 29 Jun 2020 15:48:31 +0000 (11:48 -0400)
committerLott, Christopher (cl778h) <cl778h@att.com>
Mon, 29 Jun 2020 15:49:38 +0000 (11:49 -0400)
Issue-ID: RICAPP-117
Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
Change-Id: I69cd742f2c316aa9a76639712c3012090d77d455

docs/release-notes.rst
xapp-descriptor/config.json

index b4be201..061fce9 100644 (file)
@@ -11,9 +11,10 @@ The format is based on `Keep a Changelog <http://keepachangelog.com/>`__
 and this project adheres to `Semantic Versioning <http://semver.org/>`__.
 
 
-[1.1.0] - 2020-06-11
+[1.1.0] - 2020-06-29
 --------------------
 * Send alarm on SDL failure (`RICAPP-117 <https://jira.o-ran-sc.org/browse/RICAPP-117>`_)
+* Requires RMR at version 4.1.2 or later
 * Requires xapp-frame-py at version 1.2.0 or later
 
 
index 9bc76b3..f8a798f 100644 (file)
@@ -1,41 +1,51 @@
 {
-        "xapp_name": "qpdriver",
-        "version": "1.0.9",
-        "containers": [
-            {
-                "name": "qpdriver",
-                "image": {
-                    "registry": "nexus3.o-ran-sc.org:10002",
-                    "name": "o-ran-sc/ric-app-qp-driver",
-                    "tag": "1.0.9"
-                }
-            }
-        ],
-        "messaging": {
-            "ports": [
-                {
-                    "name": "rmr-data",
-                    "container": "qpdriver",
-                    "port": 4560,
-                    "rxMessages": ["TS_UE_LIST"],
-                    "txMessages": ["TS_QOE_PRED_REQ"],
-                    "policies": [],
-                    "description": "rmr receive data port for qpdriver"
-                },
-                {
-                    "name": "rmr-route",
-                    "container": "qpdriver",
-                    "port": 4561,
-                    "description": "rmr route port for qpdriver"
-                }
-            ]
-        },
-        "rmr": {
-            "protPort": "tcp:4560",
-            "maxSize": 2072,
-            "numWorkers": 1,
-            "txMessages": ["TS_QOE_PRED_REQ"],
-            "rxMessages": ["TS_UE_LIST"],
-            "policies": []
-        }
+  "xapp_name": "qpdriver",
+  "version": "1.1.0",
+  "containers": [
+    {
+      "name": "qpdriver",
+      "image": {
+        "registry": "nexus3.o-ran-sc.org:10002",
+        "name": "o-ran-sc/ric-app-qp-driver",
+        "tag": "1.1.0"
+      }
     }
+  ],
+  "messaging": {
+    "ports": [
+      {
+        "name": "rmr-data",
+        "container": "qpdriver",
+        "port": 4560,
+        "rxMessages": [
+          "TS_UE_LIST"
+        ],
+        "txMessages": [
+          "TS_QOE_PRED_REQ",
+          "RIC_ALARM"
+        ],
+        "policies": [],
+        "description": "rmr receive data port for qpdriver"
+      },
+      {
+        "name": "rmr-route",
+        "container": "qpdriver",
+        "port": 4561,
+        "description": "rmr route port for qpdriver"
+      }
+    ]
+  },
+  "rmr": {
+    "protPort": "tcp:4560",
+    "maxSize": 2072,
+    "numWorkers": 1,
+    "rxMessages": [
+      "TS_UE_LIST"
+    ],
+    "txMessages": [
+      "TS_QOE_PRED_REQ",
+      "RIC_ALARM"
+    ],
+    "policies": []
+  }
+}