blob: f337f08253e17e28339e8b46fd8d2c8e3fe096a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
.. This work is licensed under a Creative Commons Attribution 4.0 International License.
.. http://creativecommons.org/licenses/by/4.0
========
Delivery
========
.. note::
* This section is used to describe a software component packaging.
For a run-time component this might be executable images, containers, etc.
For an SDK this might be libraries.
* This section is typically provided for a platform-component and sdk;
and referenced in developer and user guides
* This note must be removed after content has been added.
SDC Dockers Containers Structure
================================
Below is a diagram of the SDC project docker containers and the connections between them.
.. blockdiag::
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;
}
}
|