Versions Compared

Key

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

...

PlantUML Macro
titlePAP Startup and Shutdown
@startuml
participant K8S
participant PAP
database PolicyDB

autonumber
K8S --> PAP : Start PAP

PAP --> PolicyDB : Read Initial Data

PAP --> PAP : Initialize Policy Administration
activate PAP
deactivate PAP

loop forever
    ref over PAP: Wait for and\nHandle PDP\nStatus Updates
    ref over PAP: Wait for and\nHandle\nAdmin Requests
end
@enduml

...

The PAP is the run time point of coordination for the ONAP Policy Framework. When it is started, it initializes itself using data from the database.  It then waits for periodic PDP status updates and for administration requests.

...