...
Task | Detailed step | Status | Reason | Current Handler | ||||||||
Service Distribution | we are facing issue in the service distribution due to SDC parser issue | Blocked using manual step2 can bypass this error | SDC-1955 | Michael Lando | ||||||||
Client integration | Request from UUI is failing due to service template parse problem, SDC is requesting more logs/info on the defect. | Blocked using manual step 3 can bypass this error | SDC-1958 | Michael Lando | ||||||||
Link Management | Link discovery otn domain and link, create link,delete the link within otn domain,Create link to external onap otn domain. Can’t delete the link to external onap otn domain | Blocked |
| Keong | ||||||||
SOTNInfra Service | Creation is successful from SO to SDNC and controllers | Done | Seshu | |||||||||
SDWanInfra Service | Creation is successful from SO to SDNC and controllers | Done | Seshu | |||||||||
Site Service | Creation with workaround is In Progress | Done | Seshu | |||||||||
Closed Loop flow | Tested with mocked objects, ready for the testing with real serviceAlmost finish the testing | Done | Gaurav |
- 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 followthe 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
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
One can download b) Download the Csar from SDC thus generated.
c) cp the csar to SO XX
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. - Client Integration :
UUI: stored the csar which created based on beijing release under a fixed default directory, UUI will parse this the default csar and get the input parameter - Service Instantiation
There are 3 services that will be required to be designed and instantiated for the CCVPN usecase.- SDWanInfra
- SOTNInfra and
- Site Service
...