Versions Compared

Key

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

...

Code Block
kubectl -n onap edit statefulsets dev-sdnc


Step 2: Configure your SDNC to call a local Path Computation Engine

Since in Guilin release, we did not have a path computation engine (PCE), we rely on configuring a local PCE mechanism so that SDNC can call this PCE to get a path for creating a service from UNI port A (in domain A) to UNI port B (in domain B), depending on the topology that is loaded. For this, SDNC has to be configured in a way that it re-directs the calls to the mentioned local PCE mechanism. This can be done by going into the bash of the SDNC pod, and then by modifying the following parameter in one of the properties files. Here are the detailed steps:

...

Code Block
vi generic-resource-api-dg.properties

4) Edit Find the following line line which contains oof-url and edit it by replacing it's current value with the following new value. This is the local PCE system mentioned above. To know the details of how to run such a server, please refer to step 3 below.

Code Block
restapi.connection-oof-url=${your-local-ip-where-your-local-pce-is-running:server-port}/oof/sotncalc


Step 3: Configure a local Path Computation Engine

Download the zip file that is attached to this wiki page and unzip it. Then cd inside the "moco" directory and start the server with the following command:

Code Block
nohup java -jar moco-runner-0.11.0-standalone.jar http -p 1800 -g main.json &