DRAFT
This page describes how to build release I version of Non-RT RIC.
...
Info | ||
---|---|---|
| ||
In general, there is no need to build the images manually. Building from scratch is error-prone, and some development experience is required. All images for the release are available in nexus image repositories. Please refer to the page Release G I - Run in Docker for running the release G I Non-RT RIC. |
Details of the architecture can be found from from Release GI page.
(Note: The actual docker image version numbers/tags may be different from the instructions below as development continues in the relevant repositories)
...
- Java 17 (make sure that JAVA_HOME environment variable points to correct Java version).
- Docker and docker-compose (latest).
- git (latest) - for downloading code repos.
Maven 3.6.
- Note: There are several build-time dependencies for ONAP Maven modules.
Your Maven build settings will need to access the ONAP Maven repos, as described on this ONAP wiki page. (A sample ONAP Maven settings file is available).
- Note: There are several build-time dependencies for ONAP Maven modules.
Build Code
Build
...
NONRTRIC Docker containers
Download the following repos:
git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/a1policymanagementservice" -b h-release
git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/dmaapadapter" -b h-release
git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/helmmanager" -b h-release
git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/informationcoordinatorservice" -b h-release
git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/rappcatalogue" -b h-release
git clone "https://gerrit.o-ran-sc.org/r/nonrtric" -b h-release
git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/dmaapmediatorproducer" -b h-release
git clone "https://gerrit.o-ran-sc.org/r/nonrtric/rapp/ransliceassurance" -b h-release
git clone "https://gerrit.o-ran-sc.org/r/nonrtric/rapp/orufhrecovery" -b h-release
git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/sme" -b h-release
git clone "https://gerrit.nordix.org/oransc/nonrtric/plt/ranpm" -b h-release
To build docker images of a1policymanagementservice, dmaapadapter, helmmanager, informationcoordinatorservice, and rappcatalogue; go into the repo of each product and run the following command:
...
git clone "https://gerrit.o-ran-sc.org/r/sim/a1-interface" -b h-release
Create docker image
To create docker image A1 simulator (note that the given image name must match the name given in docker startup later):
...
Code Block | ||||
---|---|---|---|---|
| ||||
$ docker images near-rt-ric-simulator latest |
Build
...
NONRTRIC Control panel and gateway containers
Download the nonrtric repo:
git clone "https://gerrit.o-ran-sc.org/r/portal/nonrtric-controlpanel" -b h-release
Build the code and create docker images
...