You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

This is a brief instruction on how to deploy pm-mapper in docker env and how to configure filters in pm-mapper

Prerequisite

  • Docker
  • make
  • bash
  • linux(ubuntu 18+)

Installation

copy nonrtric repo from oran gerrit

clone pm-mapper repo
git clone "https://gerrit.o-ran-sc.org/r/nonrtric"

go to sub-directory:

cd tools/development
cd test/usecases/oruclosedlooprecovery/goversion/docker-compose

run script "start.sh", it will build images of oru-app, sdnr-sim, producer-sim and ics-sim, then it will run "docker-compose up -d" to make all these components up & running:

install dmapp-dr, cbs, consul, files-publisher and dmaap-mr
bash start.sh

After successful run, we should see the docker containers up & running:

Check logs on oru-app:

check logs
docker logs oru-app

We should be able to see a message like below:


Clean env

clean env

clean env
docker stop $(docker ps -aq)
docker system prune -f
  • No labels