...
Work Flows:
Customer ordering
- Design
- 1.0: ONAP user uses SDC to import and design VoLTE E2E model/templates via Portal. The E2E models should include, vIMS + vEPC network services, SDN-WAN connection services, relevant auto-healing policy and alarm correlation rules, etc. All of these should be tied together as a E2E VoLTE model
- SDC/CLAMP should distribute all above models to related components in run time when use need to instantiate the E2E VoLTE service.
- 1.1 Distribute E2E model to SO.
- 1.2 Distribute vIMS+vEPC NS to VF-C, SDN-WAN connection service to SDN-C(need to update flow)
- 1.3 Distribute auto-healing policy to Policy engine
- 1.4 Distribute alarm correlation rules to Holmes engine.
- 1.5 Design and Distribute DCAE configuration from CLAMP
- Instantiation
- 2.0 The user clicks the button on portal to deploy the service.
- 2.1 Portal will send request to SO to deploy the VoLTE service.
- 2.2 SO talk with A&AI to create the new E2E instance in A&AI inventory
- 2.3 SO parse the E2E model via TOSCA parser provided by Modeling project.
- 2.4 SO send request to SDN-C to deploy SDN-WAN connection service, including underlay and overlay.
- 2.5 SDN-C need talk with 3rd SDN controller to provision the MPLS BGP L3VPN for underlay and setup VXLAN tunnel based on EVPN protocol for overlay.
- 2.6 During SDN-C deploying network connection service, it need to create related instances in A&AI inventory.
- 2.7 SO send request to VF-C to deploy vIMS+vEPC network service.
- 2.8 VF-C talk with A&AI to create NS instances in A&AI inventory.
- 2.9 VF-C parse the NS model via TOSCA parser to decompose NS to VNFs and recognize the relationship between VNFs.
- 2.10 VF-C talk with Multi-VIM to create virtual network connections between VNFs if needed
- 2.11 VF-C create related virtual link instances to A&AI inventory
- 2.12 VF-C send request to S-VNFM/G-VNFM to deploy each VNFs in terms of the mapping of VNF and VNFM.
- 2.13 Aligned with ETSI specs work flow, VNFM need to send granting resource request to VF-C, VF-C will response the granting result and related VIM information(such as url/username/password, etc) to VNFM
- 2.14 VNFM call VIM API to deploy VNF into VIM
- 2.15 VNFM need to send notification to VF-C to notify the changes of virtual resources, including VDU/VL/CP/VNFC, etc.
- 2.16 VF-C talk with 3rd EMS via EMS driver to do the service configuration.
- 2.17 VF-C need to create/update related records in A&AI inventory
- VNF Auto-Scaling/Auto-healing
- 3.0 when user instantiate the service, need CLAMP to instantiate related control-loop to run time environment.
- 3.1 SDC will distribute auto-healing policy rules to policy engine, and distribute alarms correlation rules to Holmes engine as well
- 3.2 CLAMP portal will talk with DCEA to deploy related analytic application/collector tied to the services
- 3.3 CLAMP distribute alarm correlation rules to Holmes
- 3.4 During the runtime, Multi-VIM will report FCAPS metrics data from VIM/NFVI to DCAE in real-time or period.
- 3.5 VF-C will integrate with 3rd EMS, EMS will report/notify VNF service level FCAPS to VF-C in real-time or period.
- 3.6 VF-C will transfer VNF service level FCAPS metrics to DCAE aligned with DCAE’s data structure requirements.
- 3.7 Data filtering/cleaning inside DCAE, DCAE can send related events to data bus.
- 3.8 Holmes can keep track the events published to data bus
- 3.9 Holmes do the alarm correlation analysis based on the imported rules
- 3.10 Holmes send the result, the root cause, to the event bus.
- 3.11 Policy engine subscribe related topic on event bus. After receiving auto-healing/scaling triggering events, matching the events with exist rules.
- 3.12 Policy invoke VF-C APIs to do the action of auto-healing/scaling once matching events with scaling/healing rules.
- 3.13/3.14 VF-C update/create related instances information to A&AI inventory according to the changes of resources.
- Termination
- 4.0 The ONAP user trigger termination action via portal.
- 4.1 Portal talk with SO to delete the VoLTE service
- 4.2 SO check with A&AI if the instance exist.
- 4.3 SO talk with VF-C to request deletion of vIMS/vEPC network services
- 4.4 VF-C check with A&AI if the vIMS/vEPC instances exist.
- 4.5 VF-C talk with S-VNFM/G-VNFM to request deletion of VNFs and release sources.
- 4.6/4.7 Aligned with ETSI specs work flow, VNFM will delete/release virtual resources with the granting of VF-C and notify the changes(releasing) of virtual resources.
- 4.8 VF-C update/delete related resource instances in A&AI inventory
- 4.9 VF-C check with A&AI if the VL instances exist.
- 4.10 VF-C talk with Multi-VIM to request deletion of virtual network connected to VNFs
- 4.11 Multi-VIM delete related virtual network resources, such as network, sub-network and port, etc.
- 4.12 VF-C update/delete related VL resource instances in A&AI inventory
- 4.13 VF-C update/delete related NS instances in A&AI inventory
- 4.14 SO talk with SDN-C to request deletion of SDN-WAN connecting between clouds, release resources including overlay and underlay.
- 4.15 SDN-C talk with 3rd SDN controller to release connetion resources.
- 4.16 SDN-C update/delete related connection resource instances in A&AI inventory
- 4.17 SO update/delete related E2E service instances in A&AI inventory
Controll Automation:
Open Loop
...
< list all projects that are impacted by this use case and identify any project which would have to be created >
- Modeling/Models
Provide TOSCA parser to support to parse NS/VNF or E2E models
Modeling will need to be added to describe how VNFs are to be instantiated, removed, healed (restart, rebuild), scaled, how metrics related are gathered, how events are received
Modeling will need to be added to describe the connection service (underlay/overlay) between cloud Edge and Core.
- SDC
Add logic to use the new modeling when designing the service, and then distribute the resulting artifacts - SO
Add logic to understand the new artifacts; orchestrate/manage changes according to it - SDN-C/SDN Agent
Add logic to support to provision the underlay and overlay connection service between clouds, including 3rd party commercial SDN controllers. - DCAE
Support statisticsDesign vIMS/vEPC network service, TOSCA based. Who provides initial VNF templates? VNF Vendor.
Design SDN-WAN network connection service.
Design Auto-healing policy
Design Alarm correlation rules
Design work flow/DG used by SO/VF-C/SDN-C
Design E2E service, tie all above together. - SO
E2E service lifecycle management, decompose E2E service and talk with VF-C/SDN-C to instantiate services respectively in NFV/SDN domain.
- DCAE
Support metrics data collection on the VoLTE case and receipt of events as per the new model
VNFSupport
to integrateNB APIs to notify/report metrics data collected from multi-components in real-time.
- VF-C
network service(vIMS+vEPC) lifecycle management
S
Integrate with S-VNFM/G-
EMS to fulfill the NS lifecycle management and configuration. - VF-C and DCAE
Support the above control loops - SO/SDN-C/SDN Agent/VF-C
Monitor the service to verify the all NSs/VNFs have been executed, and update A&AI.VNFM to do VNF lifecycle management
Integrate with EMS to collect FCAPS metrics data of VNF level and do application configuration
Integrate with Multi-VIM to do virtual resource management
Transfer FCAPS data to DCAE aligned with DCAE’s requirements - SDN-C
network connection service lifecycle management
Integrate with 3rd party SDN Controllers to setup MPLS BGP L3VPN for underlay
Integrate with 3rd party SDN Controllers to setup VXLAN based on EVPN protocol tunnel for overlay - A&AI
Support the new data model
Support the integration with new added components - Policy
Support
new policy relatedto
the scalingdefine and
healing in VoLTE use caseexecute auto-healing policy rules.
Support integration with VF-C for execution of auto-healing policy rules. - Multi-VIM
Support multiple VIMs - Holmes
- CLAMP
- OOM
- MSBto aggregate multi version OpenStack to provide common NB APIs including resources management and FCAPS
- Holmes
Integration with CLAMP for support alarm correlation rules definition and distribution and LCM.
Integration with DCAE for FCAPS metrics as input of Holmes.
Support for alarm correction execution. - CLAMP
Support auto-healing control loop lifecycle management (design, distribution, deletion, etc.).
Integration with Policy for auto-healing rules
Integration with Holmes for alarm correlation rules. - VNF-SDK
Support VNFs on-boarding included in VoLTE cases, such as packaging, validation and testing, etc.
- OOM
Support to deploy and operate new added components into ONAP, such as VF-C/Holmes - MSB
Support to route requests to components correctly. - Use Case UISupport VoLTE case lifecycle management actions, monitor service instances status, display FCAPS metrics data in real time.
Priorities:
1 means the highest priority.
...