blob: 6247b6e7bfcafba064ff116508078b80c7acbec1 [file] [log] [blame]
maximesson94978f42019-11-13 11:53:26 +01001.. This work is licensed under a Creative Commons Attribution 4.0 International License.
2.. SPDX-License-Identifier: CC-BY-4.0
elinuxhenrik0a4c38b2020-04-14 10:59:36 +02003.. Copyright (C) 2020 Nordix
Lathish1279d192019-10-10 13:30:07 +01004
elinuxhenrikc7a0d732020-02-04 14:49:59 +01005Developer Guide
6===============
Lathish1279d192019-10-10 13:30:07 +01007
elinuxhenrikc7a0d732020-02-04 14:49:59 +01008This document provides a quickstart for developers of the Non-RT RIC.
9
10SDNC A1 Controller
maximessoneaaee912020-03-26 16:43:27 +010011==================
Lathish1279d192019-10-10 13:30:07 +010012
13Prerequisites
14-------------
15
161. Java development kit (JDK), version 8
172. Maven dependency-management tool, version 3.4 or later
183. Python, version 2
194. Docker, version 19.03.1 or later
205. Docker Compose, version 1.24.1 or later
21
elinuxhenrikc7a0d732020-02-04 14:49:59 +010022Build and run
23-------------
Lathish1279d192019-10-10 13:30:07 +010024Go to the northbound directory and run this command ::
25 mvn clean install
26
27This will build the project and create artifcats in maven repo
28
29Go to oam/installation directory and run this command ::
30 mvn clean install -P docker
maximessone6b4d272019-10-31 13:26:13 +010031
maximesson4d8b5672020-06-04 12:12:59 +020032This will create the docker images required for the A1 Controller
Lathish1279d192019-10-10 13:30:07 +010033
34After this step check for the docker images created by the maven build with this command ::
maximesson4d8b5672020-06-04 12:12:59 +020035 docker images | grep a1-controller
Lathish1279d192019-10-10 13:30:07 +010036
37Go to oam/installation/src/main/yaml and run this command ::
maximesson4d8b5672020-06-04 12:12:59 +020038 docker-compose up -d a1-controller
Lathish1279d192019-10-10 13:30:07 +010039
maximesson4d8b5672020-06-04 12:12:59 +020040This will create the docker containers with the A1 Controller image, you can check the status of the docker container using ::
41 docker-compose logs -f a1-controller
Lathish1279d192019-10-10 13:30:07 +010042
43The SDNC url to access the Northbound API,
44 http://localhost:8282/apidoc/explorer/index.html
45
maximessone6b4d272019-10-31 13:26:13 +010046Credentials: admin/Kp8bJ4SXszM0WXlhak3eHlcse2gAw84vaoGGmJvUy2U
Lathish1279d192019-10-10 13:30:07 +010047
Lathishe1041aa2020-01-31 14:01:45 +000048Policy Agent
maximessoneaaee912020-03-26 16:43:27 +010049============
50
51The O-RAN Non-RT RIC Policy Agent provides a REST API for management of policices. It provides support for:
elinuxhenrik71061052020-02-03 11:11:37 +010052
53 * Supervision of clients (R-APPs) to eliminate stray policies in case of failure
54 * Consistency monitoring of the SMO view of policies and the actual situation in the RICs
55 * Consistency monitoring of RIC capabilities (policy types)
56 * Policy configuration. This includes:
57
58 * One REST API towards all RICs in the network
59 * Query functions that can find all policies in a RIC, all policies owned by a service (R-APP), all policies of a type etc.
60 * Maps O1 resources (ManagedElement) as defined in O1 to the controlling RIC.
elinuxhenrikc7a0d732020-02-04 14:49:59 +010061
maximessoneaaee912020-03-26 16:43:27 +010062| The Policy Agent can be accessed over the REST API or through the DMaaP Interface. The REST API is documented in the
63| *nonrtric/policy-agent/docs/api.yaml* file. Please refer to the README file of Policy Agent to know more about the API's.
maximessone3954c42020-02-24 17:15:50 +010064
maximessone6b4d272019-10-31 13:26:13 +010065End-to-end call
maximesson780b2bf2019-11-12 16:09:02 +010066===============
maximessone6b4d272019-10-31 13:26:13 +010067
68In order to make a complete end-to-end call, follow the instructions given in this `guide`_.
69
maximessoneaaee912020-03-26 16:43:27 +010070.. _guide: https://wiki.o-ran-sc.org/pages/viewpage.action?pageId=12157166