Versions Compared

Key

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

...

For development of in case of small volume without any high availableity capability a singel ODL instance is sufficient.

PlantUML Macro
@startuml

' Diagram
title 
  SDN-R tiny setup
  Connectivity
end title

box "Network" #eeeeee
  participant "<b>PNF00</b>\nnetconf-server" as pnf00
  participant "<b>PNF01</b>\nnetconf-server" as pnf01 
  participant "<b>PNF99</b>\nnetconf-server" as pnf99 
end box 

box "ONAP SDN-R" #ffffff
  participant "<b>ODL</b>\nnetconf-client" as odl01
end box

box "ONAP A&AI" 
  participant "<b>AAI</b>\nhttps-server" as aai01
end box
 
box "ONAP DCAE" 
  participant "<b>VES Collector</b>\nhttps-server" as ves01
end box

group NetConf\nautomated configuration management
  pnf00 <-> odl01 : SSH/NetConf/YANG port:830 \n<b>currently active
  pnf01 <--> odl01 : SSH/NetConf/YANGport: 830 \npossible
  pnf99 <--> odl01: SSH/NetConf/YANG port:830 \npossible
end group

group sdnr-interfacing-with-dcae
  odl01 <-> ves01: https:8443
end group

group sdnr-interfacing-with-aai
  odl01 <-> aai01: https:8443
end group

' End Diagram
' Format
header
  <b><font color=#8888ff>License</font></b>
  <b><font color=#8888ff>Apache 2.0</font></b>
endheader
'caption "\n UML Formatting"

right footer 
   SDN-R Tiny
  Thanks to pYang and plantUml! 
  2019-04-06 | onap.org
end footer

skinparam backgroundColor #fefefe

skinparam backgroundColor #fefefe
'skinparam handwritten true
skinparam roundcorner 15

skinparam databaseBorderColor #666666
skinparam databaseBackgroundColor #fefefe
skinparam databaseFontColor #666666

skinparam sequence {
  MessageAlign left
  ArrowColor #666666
  ArrowFontColor #666666
  ActorBorderColor #666666
  LifeLineBorderColor #666666
  LifeLineBackgroundColor #eeeeee
 
  BoxBorderColor #666666
    
  GroupBorderColor #666666
  GroupBackgroundColor #eeeeee
  
  ParticipantBorderColor #666666
  ParticipantBackgroundColor #ffffdd
  'ParticipantFontName Impact
  'ParticipantFontSize 17
  ParticipantFontColor #666666
    
  ActorBackgroundColor #ffffdd
  'ActorFontColor DeepSkyBlue
  'ActorFontSize 17
  'ActorFontName Aapex
}

@enduml




OpenDaylight cluster (medium setup)

...