This page describes how to get the release A version of NonRTRIC up and running locally. All four components of the NonRTRIC repo run inside docker containers, and communicate via a docker network. Details of the architecture can be found in the link: Release A.
...
- Download the nonrtric repo:
git clone "https://gerrit.o-ran-sc.org/r/nonrtric" -b Amber
- For local testing, change the 'a1ControllerBaseUrl' in application.yaml file of policy-agent to http://a1-controller-container:8181 (The current URL http://sdnc.onap:8282 is used in Kubernetes-based ONAP deployment).
cd nonrtric/policy-agent/config
vi application.yaml - Build the code and create docker images.
cd ../..
mvn clean install
...