Versions Compared

Key

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

...

  1. Link Management , can't  delete the link to external onap otn domain
    For the manual steps provided by A&AI tea, we should follow the steps as follow

    the only way to delete is using the forceDeleteTool shell script in the graphadmin container.
    First we will need to find the vertex id, you should be able to get the id by making the following GET request.

    GET /aai/v14/network/ext-aai-networks/ext-aai-network/createAndDelete/esr-system-info/test-esr-system-info-id-val-0?format=raw

    {
    "results": [
    {
    "id": "20624",
    "node-type": "pserver",
    "url": "/aai/v13/cloud-infrastructure/pservers/pserver/pserverid14503-as988q",
    "properties": {
    }
    }
    ]
    }

    Same goes for the ext-aai-network:

    GET /aai/v14/network/ext-aai-networks/ext-aai-network/createAndDelete?format=raw

    Retrieve the id from the above output as that will be the vertex id that you want to remove.

    Run the following command multiple times for both the esr-system-info and ext-aai-network:

    kubectl exec -it $(kubectl get pods -lapp=aai-graphadmin -n onap --template 'range .items.metadata.name"\n"end' | head -1) -n onap gosu aaiadmin /opt/app/aai-graphadmin/scripts/forceDeleteTool.sh -action DELETE_NODE -userId YOUR_ID_ANY_VALUE -vertexId VERTEX_ID

    From the above, remove the YOUR_ID_ANY_VALUE and VERTEX_ID with your info.

Service Distribution Error
To overcome the Service distribution, the SO catalog has to be populated with the model information of the services and resources.
a) Referring to the Csar that is generated in the SDC designed as per the detailes mentioned in the below link: CCVPN Service Design
b) Download the Csar from SDC thus generated.
c) copy the csar to SO sdc controller pod and bpmn pod

  kubectl -n onap get pod|grep so
  kubectl -n onap exec -it dev-so-so-sdc-controller-c949f5fbd-qhfbl  /bin/sh


  •   mkdir -p null/ASDC/1                            (for sdc controller pod)
  •   mkdir

...

  • -p ASDC/1                                   (for bpmn pod)


  kubectl -n onap cp service-Sdwanvpninfraservice-csar.csar  dev-so-so-bpmn-infra-58796498cf-6pzmz:null/ASDC/1/service-Sdwanvpninfraservice-csar.csar

  kubectl -n onap cp service-Sdwanvpninfraservice-csar.csar  dev-so-so-bpmn-infra-58796498cf-6pzmz:ASDC/1/service-Sdwanvpninfraservice-csar.csar


d) populate model information to SO db 
    The DB scripts can be seen in step5

The same would also be applicable for the integration of the client to create the service and get the details.
Currently the testing has been performed using the postman calls to the corresponding APIs.


  1.  Client Integration :
    To overcome the Service Template Parser issue, Usecase-UI read local csar file and create request to SO component.
    a) Make an available csar file for CCVPN use case.
    b) Replace uuid of available files with what existing in SDC.
    c) Put available csar files in UUI local path (/home/uui).

  2. Service Instantiation
    There are 3 services that will be required to be designed and instantiated for the CCVPN usecase.
    1. SDWanInfra
    2. SOTNInfra and
    3. Site Service

...