From: Idan Amit Date: Sun, 5 Nov 2017 13:07:20 +0000 (+0200) Subject: Add Delivery section to Read the Docs X-Git-Tag: 1.0.0-Amsterdam~20^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=fa7754b57c03d425ede02e238cfc5e7387657e47;p=sdc.git Add Delivery section to Read the Docs Added Delivery section to the SDC Read the Docs Change-Id: I27e4678fb0b0b635c87a9ed6a524f38a446ba0a1 Issue-Id: SDC-512 Signed-off-by: Idan Amit --- 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; + } + }