refactor: 문서 개선 중
This commit is contained in:
+20
@@ -0,0 +1,20 @@
|
||||
digraph techviz {
|
||||
graph [rankdir=LR, splines=ortho, nodesep=0.55, ranksep=0.85];
|
||||
node [fontname=Helvetica, fontsize=11, margin="0.18,0.12", style="rounded,filled", fillcolor=white, color="#2d4357", penwidth=1.5];
|
||||
edge [fontname=Helvetica, fontsize=10, color="#364b5f", penwidth=1.4, arrowsize=0.75];
|
||||
subgraph cluster_0 {
|
||||
label="호스트 test-server";
|
||||
style="rounded,dashed";
|
||||
color="#66788a";
|
||||
n0 [label="libvirtd", shape=box, style="rounded,filled"];
|
||||
n1 [label="qemu 프로세스 2개", shape=box, style="rounded,filled"];
|
||||
}
|
||||
subgraph cluster_1 {
|
||||
label="게스트 VM";
|
||||
style="rounded,dashed";
|
||||
color="#66788a";
|
||||
n2 [label="Debian 게스트 커널 2개", shape=box, style="rounded,filled"];
|
||||
}
|
||||
n0 -> n1 [label="프로세스 생성", style=solid];
|
||||
n1 -> n2 [label="virtio 장치", style=solid];
|
||||
}
|
||||
Reference in New Issue
Block a user