From: rajalakshmisv Date: Tue, 7 Dec 2021 16:59:35 +0000 (+0000) Subject: removed unwanted file X-Git-Tag: 1.0.0~14 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;ds=sidebyside;h=refs%2Fchanges%2F67%2F7267%2F1;p=ric-app%2Frc.git removed unwanted file Signed-off-by: rajalakshmisv Change-Id: Ie6cf1ba8e7f7df134a52dfc20658e0453909e966 --- diff --git a/docs/installation-guide.rst b/docs/installation-guide.rst index c3d70ee..eb6623f 100644 --- a/docs/installation-guide.rst +++ b/docs/installation-guide.rst @@ -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 diff --git a/xapp-descriptor/config.json b/xapp-descriptor/config.json index ca56fec..d7a3072 100644 --- a/xapp-descriptor/config.json +++ b/xapp-descriptor/config.json @@ -13,6 +13,12 @@ ], "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 index a01e3bc..0000000 --- a/xapp-descriptor/controls-schema.json +++ /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] - } - } - } -}