This page describes how to get the release C version of Non-RT RIC up and running locally with two separate Near-RT RIC simulator docker containers providing OSC_2.1.0 version of A1 interface.
...
- Download the nonrtric repo:
git clone "https://gerrit.o-ran-sc.org/r/nonrtric"
- Checkout cherry branch:
git checkout --track origin/cherry
Configure policy-agent
To support local test with two separate Near-RT RIC simulator instances:
...
Download the nonrtric repo (defaults to master branch):
git clone "https://gerrit.o-ran-sc.org/r/portal/nonrtric-controlpanel"
Verify controlpanel configuration
...
- Change directory:
cd nonrtric/docker-compose/data/testdata/ECS
- Put an example Enrichment information Producer by running these curl commands:
Add new EI type:
Code Block language yml theme Emacs curl -H 'Content-Type: application/json' -X PUT
...
\ -d '{"ei_job_data_schema":{"$schema":"http://json-schema.org/draft-07/schema#", "title":"STD_Type1_1.0.0", "description":"EI-Type 1", "type":"object"}}' \ http://localhost:8083/ei-producer/v1/
...
eitypes/type1
Add new EI Producer
Code Block language yml theme Emacs curl -H 'Content-Type: application/json' -X PUT \ -d '{"supported_ei_types":["type1"],"ei_job_callback_url":"http://producer:80/","ei_producer_supervision_callback_url":"http://producer:80/"}' \ http://localhost:8083/ei-producer/v1/eiproducers/prod-a
- Put an example Enrichment information Job by running these curl commands:
Code Block | ||||
---|---|---|---|---|
| ||||
curl -H 'Content-Type: application/json' -X PUT |
...
\ -d '{"eiTypeId":"type1","jobResultUri":"https://ricsim_g3_1:8185/datadelivery","jobOwner":"ricsim_g3_1","jobStatusNotificationUri":"https://callback-receiver:8091/callbacks/job1-status","jobDefinition":{"jobparam1":"value1_job1","jobparam2":"value2_job1","jobparam3":"value3_job1"}}' \ http://localhost:8083/A1-EI/v1/eijobs/job1 |
...
Run Non-RT RIC Control Panel Docker Container
...