blob: 15070aab777856085de76e935de095405e82cb26 [file] [log] [blame]
Rich Bennett4b001932017-10-16 09:25:01 -04001.. This work is licensed under a Creative Commons Attribution 4.0 International License.
2.. http://creativecommons.org/licenses/by/4.0
3
Idan Amitd059aea2017-11-05 15:07:20 +02004========
Rich Bennett4b001932017-10-16 09:25:01 -04005Delivery
6========
Idan Amitd059aea2017-11-05 15:07:20 +02007
8SDC Dockers Containers Structure
9================================
Rich Bennett4b001932017-10-16 09:25:01 -040010
Idan Amitd059aea2017-11-05 15:07:20 +020011Below is a diagram of the SDC project docker containers and the connections between them.
Rich Bennett4b001932017-10-16 09:25:01 -040012
13.. blockdiag::
14
15
Idan Amitd059aea2017-11-05 15:07:20 +020016 blockdiag delivery {
17 node_width = 170;
18 orientation = portrait;
19 SDC-Elasticsearch[shape = flowchart.database]
20 SDC-Cassandra[shape = flowchart.database]
21 SDC-Frontend -> SDC-Backend;
22 SDC-Backend -> SDC-Elasticsearch, SDC-Cassandra;
23 SDC-Sanity -> SDC-Backend;
24 group ui_group {
25 color = blue;
26 label = "UI Layer";
27 SDC-Frontend;
28 }
29 group bi_group {
30 color = yellow;
31 label = "Business Login Layer"
32 SDC-Backend;
33 }
34 group data_storage_group {
35 color = orange;
36 label = "Data Storage Layer"
37 SDC-Elasticsearch; SDC-Cassandra;
38 }
39 group testing_group {
40 color = green;
41 label = "Testing Layer";
42 SDC-Sanity;
43 }
44 }