Signed-off-by: rajalakshmisv <rajalakshmisv@gmail.com>
Change-Id: Ie6cf1ba8e7f7df134a52dfc20658e0453909e966
after this step the xapp should be in running state
ricxapp ricxapp-rc-5ccdcc9f6f-ktq7w 1/1 Running 0 88m
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
],
"messaging": {
"ports": [
],
"messaging": {
"ports": [
+ {
+ "name": "grpc-server",
+ "container": "rc",
+ "port": 7777,
+ "targetPort": 7777
+ },
{
"name": "rmr-data",
"container": "rc",
{
"name": "rmr-data",
"container": "rc",
+++ /dev/null
-{
- "$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]
- }
- }
- }
-}