X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=docs%2Fdeveloper-guide.rst;fp=docs%2Fdeveloper-guide.rst;h=e1dea3cec4d78af562721b15554c32222150713e;hb=ac245e1479225466740ca4c7a1080386b3e95af9;hp=0000000000000000000000000000000000000000;hpb=e71e2e768ef5b00d46cec1f2b2e9b2a1ad526bdc;p=nonrtric%2Fplt%2Frappmanager.git diff --git a/docs/developer-guide.rst b/docs/developer-guide.rst new file mode 100755 index 0000000..e1dea3c --- /dev/null +++ b/docs/developer-guide.rst @@ -0,0 +1,61 @@ +.. This work is licensed under a Creative Commons Attribution 4.0 International License. +.. SPDX-License-Identifier: CC-BY-4.0 +.. Copyright (C) 2023 OpenInfra Foundation Europe. All rights reserved. + +Developer Guide +=============== + +This document provides a quickstart for developers of the Non-RT RIC rApp Manager. + +Additional developer guides are available on the `O-RAN SC NONRTRIC Developer wiki `_. + +The rApp Manager is a Java 17 web application built using the Spring Framework. Using Spring Boot +dependencies, it runs as a standalone application. + +Its main functionality is to lifecycle manage rApps. + +Start standalone +++++++++++++++++ + +The project uses Maven. To start the rApp Manager as a freestanding application, run the following +command in the *rappmanager/rapp-manager-application* directory: + + +-----------------------------+ + | mvn spring-boot:run | + +-----------------------------+ + +There are a few service endpoints that needs to be available to run. These are referred to from the application.yaml file. +The following properties have to be modified: + +* rappmanager.acm.baseurl=http://policy-clamp-runtime-acm.default:6969/onap/policy/clamp/acm/v2/ +* rappmanager.sme.baseurl=http://capifcore:8090 +* rappmanager.dme.baseurl=http://informationservice:9082 + + +Start in Docker ++++++++++++++++ + +To build and deploy the rApp Manager, go to the *rappmanager/rapp-manager-application* folder and run the +following command: + + +-----------------------------+ + | mvn clean install | + +-----------------------------+ + +Then start the container by running the following command: + + +-------------------------------------+ + | docker run nonrtric-plt-rappmanager | + +-------------------------------------+ + +Kubernetes deployment ++++++++++++++++++++++ + +Non-RT RIC can be also deployed in a Kubernetes cluster, `it/dep repository `_. +hosts deployment and integration artifacts. Instructions and helm charts to deploy the Non-RT-RIC functions in the +OSC NONRTRIC integrated test environment can be found in the *./nonrtric* directory. + +For more information on installation of NonRT-RIC in Kubernetes, see `Deploy NONRTRIC in Kubernetes `_. + +For more information see `Integration and Testing documentation in the O-RAN-SC `_. +