diff options
author | ChrisC <christophe.closset@intl.att.com> | 2020-11-13 15:04:38 +0100 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2020-11-13 16:05:14 +0000 |
commit | 8143fb5a129a321079cc6e93c74e32abc03ab041 (patch) | |
tree | 6c13562e8d74d7fad17473d99c0f64a88c1dafc3 /docs/delivery.rst | |
parent | b8d71b90706577bd748371f90160c1862a8ce96a (diff) |
Update Documentation
Update local SDC doc with Guilin Content
Issue-ID: SDC-3370
Signed-off-by: ChrisC <christophe.closset@intl.att.com>
Change-Id: I3d94e3dbb8c4a8e2723ec364e6d4c6e9ff03946a
Diffstat (limited to 'docs/delivery.rst')
-rw-r--r-- | docs/delivery.rst | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/docs/delivery.rst b/docs/delivery.rst index 21c860c0a0..97b7dd147d 100644 --- a/docs/delivery.rst +++ b/docs/delivery.rst @@ -19,7 +19,8 @@ Overview +---------------------+----------------------------------------------------------------------------+------------------------------------------------+ | sdc-cs-onboard init | Logic for creating the **schemas for SDC onboarding** server | Create the **schemas** | +---------------------+----------------------------------------------------------------------------+------------------------------------------------+ -| sdc-cs | **Cassandra** server | Starts **Cassandra** | +| sdc-cs | **Cassandra** server, this is optional as SDC uses shared ONAP Cassandra by| Starts **Cassandra** | +| | default | | +---------------------+----------------------------------------------------------------------------+------------------------------------------------+ | sdc-onboard-BE | Onboarding **Backend** Jetty server | Starts Jetty with the application. | +---------------------+----------------------------------------------------------------------------+------------------------------------------------+ @@ -30,6 +31,13 @@ Overview +---------------------+----------------------------------------------------------------------------+------------------------------------------------+ | sdc-FE | SDC **Frontend** Jetty server | Starts Jetty with our application. | +---------------------+----------------------------------------------------------------------------+------------------------------------------------+ +| sdc-WFD-BE-init | Logic for configuring **Workflow Designer** | Execute configuration tasks of the WFD | ++---------------------+----------------------------------------------------------------------------+------------------------------------------------+ +| sdc-WFD-BE | SDC Workflow **Backtend** Jetty server | Starts Jetty with our application. | ++---------------------+----------------------------------------------------------------------------+------------------------------------------------+ +| sdc-WFD-FE | SDC Workflow **Frontend** Jetty server | Starts Jetty with our application. | ++---------------------+----------------------------------------------------------------------------+------------------------------------------------+ + Deployement dependency map @@ -51,6 +59,7 @@ Deployement dependency map app [class = "app"]; fe -> be-config -> be -> onboarding-be -> onboarding-init -> cassandra-config -> cassandra; + sdc-WFD-FE -> sdc-WFD-BE-init -> sdc-WFD-BE; Connectivity Matrix ------------------- @@ -92,20 +101,27 @@ Below is a diagram of the SDC project docker containers and the connections betw blockdiag delivery { - node_width = 100; + node_width = 140; orientation = portrait; sdc-cassandra[shape = flowchart.database , color = grey] sdc-frontend [color = blue, textcolor="white"] sdc-backend [color = yellow] sdc-onboarding-backend [color = yellow] + sdc-backend [color = yellow] + sdc-WFD-frontend [color = brown] + sdc-WFD-backend [color = brown] + sdc-WFD-BE-init [color = brown] sdc-cassandra-Config [color = orange] sdc-backend-config [color = orange] sdc-onboarding-init [color = orange] + sdc-WFD-BE-init -> sdc-WFD-backend; sdc-onboarding-init -> sdc-onboarding-backend; sdc-cassandra-Config -> sdc-cassandra; sdc-backend-config -> sdc-backend; sdc-wss-simulator -> sdc-frontend; + sdc-WFD-frontend -> SDC-WFD-backend; sdc-frontend -> sdc-backend, sdc-onboarding-backend; + SDC-WFD-backend -> sdc-cassandra; sdc-backend -> sdc-cassandra; sdc-onboarding-backend -> sdc-cassandra; sdc-sanity -> sdc-backend; @@ -113,7 +129,7 @@ Below is a diagram of the SDC project docker containers and the connections betw group deploy_group { color = green; label = "Application Layer" - sdc-backend; sdc-onboarding-backend; sdc-frontend; sdc-cassandra; sdc-cassandra-Config; sdc-backend-config; sdc-onboarding-init; + sdc-backend; sdc-onboarding-backend; sdc-frontend; sdc-cassandra; sdc-cassandra-Config; sdc-backend-config; sdc-onboarding-init; sdc-WFD-frontend; sdc-WFD-backend; sdc-WFD-BE-init; } group testing_group { color = purple; |