aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Lando <ml636r@att.com>2017-11-05 13:47:58 +0000
committerGerrit Code Review <gerrit@onap.org>2017-11-05 13:47:58 +0000
commit29df0797b7967382c5524ba0c963e2e15f608a5b (patch)
treefc77b4ca82f60f94f228a92aa49baf6be8009532
parent49df26e5bb0f89d501d922770360732191df6dbd (diff)
parentfa7754b57c03d425ede02e238cfc5e7387657e47 (diff)
Merge "Add Delivery section to Read the Docs" into release-1.1.0
-rw-r--r--docs/delivery.rst59
1 files changed, 35 insertions, 24 deletions
diff --git a/docs/delivery.rst b/docs/delivery.rst
index f3f083a732..f337f08253 100644
--- a/docs/delivery.rst
+++ b/docs/delivery.rst
@@ -1,6 +1,7 @@
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0
+========
Delivery
========
@@ -13,32 +14,42 @@ Delivery
and referenced in developer and user guides
* This note must be removed after content has been added.
+
+
+SDC Dockers Containers Structure
+================================
-Example use of a block diagram.
+Below is a diagram of the SDC project docker containers and the connections between them.
.. blockdiag::
- blockdiag layers {
- orientation = portrait
- a -> m;
- b -> n;
- c -> x;
- m -> y;
- m -> z;
- group l1 {
- color = blue;
- x; y; z;
- }
- group l2 {
- color = yellow;
- m; n;
- }
- group l3 {
- color = orange;
- a; b; c;
- }
-
- }
-
-
+ blockdiag delivery {
+ node_width = 170;
+ orientation = portrait;
+ SDC-Elasticsearch[shape = flowchart.database]
+ SDC-Cassandra[shape = flowchart.database]
+ SDC-Frontend -> SDC-Backend;
+ SDC-Backend -> SDC-Elasticsearch, SDC-Cassandra;
+ SDC-Sanity -> SDC-Backend;
+ group ui_group {
+ color = blue;
+ label = "UI Layer";
+ SDC-Frontend;
+ }
+ group bi_group {
+ color = yellow;
+ label = "Business Login Layer"
+ SDC-Backend;
+ }
+ group data_storage_group {
+ color = orange;
+ label = "Data Storage Layer"
+ SDC-Elasticsearch; SDC-Cassandra;
+ }
+ group testing_group {
+ color = green;
+ label = "Testing Layer";
+ SDC-Sanity;
+ }
+ }