docs folder change
[ric-app/rc.git] / README.md
index 091901a..e096edd 100644 (file)
--- a/README.md
+++ b/README.md
@@ -32,3 +32,27 @@ GRPC communication can be tested using the grpccurl command
 In the current implementation, timer is started after initiating Control Request to E2Node. So timer expiry errors will be seen in logs w.r.t. Control Resp.
 As control ACK is not handled this error can be ignored
 
+Steps to onboard the xapp 
+ 1)echo '{ "config-file.json_url": "https://gerrit.o-ran-sc.org/r/gitweb?p=ric-app/rc.git;a=blob_plain;f=xapp-descriptor/config.json;hb=HEAD","controls-schema.json_url": "https://gerrit.o-ran-sc.org/r/gitweb?p=ric-app/rc.git;a=blob_plain;f=xapp-descriptor/schema.json;hb=HEAD" }' > onboard.rc.url
+
+2)Onboard the rc xapp using the below command :
+       $curl --location --request POST "http://$(hostname):32080/onboard/api/v1/onboard/download"      --header 'Content-Type: application/json' --data-binary "@./onboard.rc.url"  
+
+       After this command: xapp should be created
+       Eg:
+       $curl --location --request POST "http://$(hostname):32080/onboard/api/v1/onboard/download"      --header 'Content-Type: application/json' --data-binary "@./onboard.rc.url"
+       {
+       "status": "Created"
+       }
+ 3)Deploying the xapp:
+       Eg:
+       $curl --location --request POST "http://$(hostname):32080/appmgr/ric/v1/xapps"      --header 'Content-Type: application/json' --data-raw '{"xappName": "rc"}'
+       {
+       "instances":null,"name":"rc","status":"deployed","version":"1.0"
+       }
+
+         after this step the xapp should be in running state
+
+         ricxapp       ricxapp-rc-5ccdcc9f6f-ktq7w                                  1/1     Running     0          88m
+
+ 4) restart rtMgr so rmr is ready