Versions Compared

Key

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

Test Manual

Pre-population of test data in DBAAS

In order to trigger the loop in the Traffic Steering use case, we must populate test data in DBAAS.  This includes both cell and UE entries.

This is done through a script.  Follow these directions to run the script:

git clone "https://gerrit.o-ran-sc.org/r/ric-app/ts"

cd ts/ts/test/populatedb

chmod a+x populate_db.sh

./populate_db.sh

This script will build a docker image locally and also install a helm chart in the kubernetes cluster to run the image.

The code that is run will write the necessary data to SDL

Onboarding and Deployment of xApps

...

  • Traffic Steering (TS) xApp (AT&T)
  • QoE Prediction Driver (QPDriver) xApp (AT&T)
  • QoE Prediction (QP) xApp (AT&T)
  • KPIMON xApp (Samsung)


Each of them except for KPIMON have a descriptor in their gerrit repo under the xapp-descriptor/ directory.

...

Copy the following into a file called create.json -
Policy Type Create

{"name" : "tsapolicy", "description" : "tsa parameters", "policy_type_id" : 20008, "create_schema" : { "$schema" : "http://json-schema.org/draft-07/schema#", "type" : "object", "properties" : { "threshold" : { "type" : "integer", "default" : 0 } }, "additionalProperties" : false } }

Then run:

curl -X PUT --header "Content-Type: application/json"  --data-raw @create.json   http://<Base URL for Kong>/a1mediator/a1-p/policytypes/20008

...