-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiaas_bc.dot
More file actions
41 lines (35 loc) · 1.01 KB
/
iaas_bc.dot
File metadata and controls
41 lines (35 loc) · 1.01 KB
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
digraph g {
node[style = filled, color = lightblue];
subgraph cluster1 {
label="Server"
Server->{Volumn, Nic,ServerImage}[dir=none]
Server[label="Server",shape=box,color=orange]
Volumn[label="Volumn",shape=box,color=orange]
Nic[label="Nic",shape=box,color=orange]
ServerImage[label="Image",shape=box,color=orange]
Nic -> ServerPort[dir=none]
subgraph cluster5 {
label="Context Mapping"
ServerPort[label="Port",shape=box,color=orange]
}
}
subgraph cluster2 {
label="Network"
Netplane->{Subnet}[dir=none]
Subnet->{Port}[dir=none]
Netplane[label="Netplane",shape=box,color=orange]
Subnet[label="Subnet",shape=box,color=orange]
Port[label="Port",shape=box,color=orange]
}
subgraph cluster3 {
label="Host\l<Support>"
Host->{VM}[dir=none]
Host[label="Host",shape=box,color=greenyellow]
VM[label="VM",shape=box,color=greenyellow]
}
subgraph cluster4 {
label="Image\l<Support>"
Image[label="Image",shape=box,color=greenyellow]
}
Port -> ServerPort[label="Sync/Validate"]
}