DRAFT
This page describes how to get and build the Jakarta release version of A1-Policy functions.
...
Download the
ccsdk/oran
repo, Istanbul branch:Code Block language bash $ git clone "https://gerrit.onap.org/r/ccsdk/oran" -b jakartakohn
Build the code and create docker image
...
Code Block | ||||
---|---|---|---|---|
| ||||
$ docker images onap/ccsdk-oran-a1policymanagementservice 1.34.41-SNAPSHOT |
Build A1 Adapter for Controller
...
Project | Repo | Gerrit Link | Command | Note |
---|---|---|---|---|
CCSDK | ccsdk/parent | git clone "https://gerrit.onap.org/r/ccsdk/parent" -b jakartakohn | mvn clean install -Dmaven.test.skip=true | If the parent artifacts are not yet released you need to build this repo in order to build other any other ccsdk repos (Including ccsdk/oran/a1-adapter ) |
CCSDK | ccsdk/features | git clone "https://gerrit.onap.org/r/ccsdk/features" -b jakartakohn | mvn clean install -Dmaven.test.skip=true | |
CCSDK | ccsdk/distribution | git clone "https://gerrit.onap.org/r/ccsdk/distribution" -b jakartakohn | mvn clean install -Dmaven.test.skip=true -Pdocker | Creates the CCSDK docker image |
SDNC | sdnc/northbound | git clone "https://gerrit.onap.org/r/sdnc/northbound" -b jakartakohn | mvn clean install -Dmaven.test.skip=true | |
SDNC | sdnc/oam | git clone "https://gerrit.onap.org/r/sdnc/oam" -b jakartakohn | mvn clean install -Dmaven.test.skip=true -Pdocker | Creates the SDNC docker image. Make sure you refer to the appropriate docker image version in the pom file, e.g., you may need to update ccsdk.docker.version for onap/ccsdk-ansible-server-image from 1.34.31-STAGING-latest to 1.34.31-SNAPSHOT-latest to refer to the latest newly built versions.(You should double check the docker tag/versions corresponds to the latest released versions and the version you've just built.) |
...