X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=xapp-descriptor%2Fconfig.json;h=bf88bb0b0b0a6dc91a8fda97d49ed1be0a3fdd67;hb=37ead4a3d922128b69c7fe1c6399ab4021d1309c;hp=87ac5cc27845b6d05b2e4dc50acb986da2ae926e;hpb=5d8a34950b02f1170bb27c6fcb6198f27fb8cb86;p=ric-app%2Frc.git diff --git a/xapp-descriptor/config.json b/xapp-descriptor/config.json index 87ac5cc..bf88bb0 100644 --- a/xapp-descriptor/config.json +++ b/xapp-descriptor/config.json @@ -1,6 +1,5 @@ { - "config-file.json":{ - "xapp_name": "rc", + "name": "rc", "version": "1.0.0", "containers": [ { @@ -8,12 +7,40 @@ "image": { "registry": "nexus3.o-ran-sc.org:10002", "name": "o-ran-sc/ric-app-rc", - "tag": "1.0.0" + "tag": "1.0.3" } } ], + "livenessProbe": { + "httpGet": { + "path": "ric/v1/health/alive", + "port": 8080 + }, + "initialDelaySeconds": 5, + "periodSeconds": 15 + }, + "readinessProbe": { + "httpGet": { + "path": "ric/v1/health/ready", + "port": 8080 + }, + "initialDelaySeconds": 5, + "periodSeconds": 15 + }, "messaging": { "ports": [ + { + "name": "http", + "container": "rc", + "port": 8080, + "description": "http service" + }, + { + "name": "grpc-server", + "container": "rc", + "port": 7777, + "targetPort": 7777 + }, { "name": "rmr-data", "container": "rc", @@ -41,7 +68,7 @@ }, "controls": { "ricHOControlgRpcServerPort" : "7777", - "logLevel": 4 + "logLevel": 3, + "controlAckTimer" : 2 } } -}