removed unwanted file 67/7267/1
authorrajalakshmisv <rajalakshmisv@gmail.com>
Tue, 7 Dec 2021 16:59:35 +0000 (16:59 +0000)
committerrajalakshmisv <rajalakshmisv@gmail.com>
Tue, 7 Dec 2021 17:00:08 +0000 (17:00 +0000)
Signed-off-by: rajalakshmisv <rajalakshmisv@gmail.com>
Change-Id: Ie6cf1ba8e7f7df134a52dfc20658e0453909e966

docs/installation-guide.rst
xapp-descriptor/config.json
xapp-descriptor/controls-schema.json [deleted file]

index c3d70ee..eb6623f 100644 (file)
@@ -35,11 +35,4 @@ Steps to onboard the xapp
          after this step the xapp should be in running state
          ricxapp       ricxapp-rc-5ccdcc9f6f-ktq7w                                  1/1     Running     0          88m
         
- 5) Edit the xapp svc file to configure the grpcserver port        
-        kubectl edit svc -n ricxapp service-ricxapp-rc-rmr
-        Add the port info:
-        - name: grpc-server
-          port: 7777
-          protocol: TCP
-          targetPort: 7777
+ 5) restart rtMgr so rmr is ready 
index ca56fec..d7a3072 100644 (file)
   ],
   "messaging": {
     "ports": [
+     {
+       "name": "grpc-server",
+       "container": "rc",
+       "port": 7777,
+       "targetPort": 7777
+     },             
      {
         "name": "rmr-data",
         "container": "rc",
diff --git a/xapp-descriptor/controls-schema.json b/xapp-descriptor/controls-schema.json
deleted file mode 100644 (file)
index a01e3bc..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-{
-        "$schema": "http://json-schema.org/draft-07/schema#", "$id": "#/controls",
-        "type": "object",
-        "title": "Controls Section Schema",
-        "required": [
-                "ricHOControlgRpcServerPort",
-                "logLevel"
-        ],
-        "properties": {
-           "ricHOControlgRpcServerPort": {
-           "$id": "#/properties/ricHOControlgRpcServerPort",
-           "type": "string",
-           "title": "GRPC Port",
-           "default": "7777",
-           "examples": [
-           "7777"
-      ],
-      "logLevel" : {
-      "$id": "#/properties/logLevel",
-      "type": "int",
-      "title": "log level",
-      "default":3,
-       "examples": [3]
-      }
-    }
-    }
-}