Versions Compared

Key

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

...

PlantUML Render Macro
@startuml

participant SOL002_Adapter
participant External_VNFM
participant AAI
participant DMaaP
participant Policy
participant "APPC/CDS"

hnote over AAI : Precondition: VNF is instantiated (e.g. through SOL003 and with external VNFM) and VNFM is registered in ESR

...
alt Subscribe to LCM Notifications after startup

SOL002_Adapter -> ESR : 1. GET external VNFMs details
SOL002_Adapter -> External_VNFM : 12. POST ../vnflcm/v1/subscriptions
External_VNFM -> SOL002_Adapter : 23. 201 Created
end

...
alt Receive VnfLcmOperationOccurrenceNotification
External_VNFM -> SOL002_Adapter: 34. POST ../notifyEndpoint
SOL002_Adapter -> AAI: 45. GET generic-vnf to make mapping.
SOL002_Adapter -> SOL002_Adapter: 56. transform ETSI model to ONAP model and create DMaaP message for ONAP
SOL002_Adapter -> DMaaP: 67. POST Notification
Policy -> DMaaP: 78. Consume notifications targeted to Policy
Policy -> Policy: 89. Execute User's policy if exists
Policy -> "APPC/CDS": 910. POST: Policy action to configure VNF
end


@enduml


  1. SOL002 Adapter queries the ESR for external VNFM details.
  2. SOL002Adapter subscribes in it's startup notifications from external VNFM. Filter used can be wide i.e. all notifications.
  3. When adapter get's success for subscription request it starts to listen notifications. If subscription fails, adapter continues to try again forever with suitable interval. 
  4. When something happens (e.g. VNF instantiated), external VNFM sends notification
  5. Query AAI for VNF details. GET query to MANO may also be needed if vnfIds in systems are not same. (Optional step, needed if model translation needed)
  6. SOL002Adapter makes necessary translation from ETSI model to ONAP model. To be checked details of translation or if translation even needed. Depends on SOL003 integration.
  7. Agreed (to be agreed message format and fields) message format of LCM notification is posted to DMaaP
  8. Consume LCM notification
  9. If Operational Policy reacting to LCM notifications is created as part of normal VNF modeling/instantiation, then user's policy is run. It's up to user's policy what it does and following steps is an example for configuring a VNF with ONAP controller.
  10. Execute policy action towards actor (through DMaaP or directly)

...