diff options
author | Idan Amit <ia096e@intl.att.com> | 2017-11-05 15:07:20 +0200 |
---|---|---|
committer | Idan Amit <ia096e@intl.att.com> | 2017-11-05 13:47:39 +0000 |
commit | d059aeab877b4217e05dff07fdbaf61bf6c1a73e (patch) | |
tree | 362420c14afd6b78057bfc14c494415b41873307 /docs/delivery.rst | |
parent | 099ba281a85a2c587832e45bda5911440c1e49f3 (diff) |
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 <ia096e@intl.att.com>
Diffstat (limited to 'docs/delivery.rst')
-rw-r--r-- | docs/delivery.rst | 59 |
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; + } + } |