Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This page describes how to build Release K version of Non-RT RIC. 

...

Info
titleDo you really need to build?

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 K - Run in Docker  for running the release I Non-RT RIC.  


Details of the architecture can be found from Release K page. 

...

     git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/a1policymanagementservice" -b k-release --recursive

git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/rappmanager" -b k-release

git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/sme" -b k-release  

git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/dmaapadapter" -b j-release

git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/helmmanager" -b j-release

git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/informationcoordinatorservice" -b j-release

git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/rappcatalogue" -b j-release

git clone "https://gerrit.o-ran-sc.org/r/nonrtric" -b j-release

git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/dmaapmediatorproducer" -b j-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 g-release

    git clone "https://gerrit.o-ran-sc.org/r/nonrtric/plt/ranpm" -b j-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 k-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):

...

     git clone "https://gerrit.o-ran-sc.org/r/portal/nonrtric-controlpanel" -b i-release

Build the code and create docker images

Code Block
languagebash
cd nonrtric-controlpanel
cd nonrtric-gateway
mvn clean install  -Dmaven.test.skip=true
docker build --build-arg JAR=nonrtric-gateway-1.13.0-SNAPSHOT.jar -t o-ran-sc/nonrtric-gateway:1.23.0-SNAPSHOT .

cd ../webapp-frontend
docker build -t o-ran-sc/nonrtric-controlpanel:2.56.0-SNAPSHOT .

Using the command below you can check that the names below are in the list of available images.

Code Block
languagebash
themeEmacs
$ docker images
o-ran-sc/nonrtric-gateway                           1.23.0-SNAPSHOT
o-ran-sc/nonrtric-controlpanel                      2.56.0-SNAPSHOT

(Note: The actual docker image version numbers/tags may be different as development continues in the relevant repositories)