Add makefile
This commit is contained in:
parent
0fc5a5280d
commit
fd72417487
3 changed files with 14 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
*.png
|
4
Makefile
Normal file
4
Makefile
Normal file
|
@ -0,0 +1,4 @@
|
|||
all: ucloud-networking.png ucloud-vm-states.png
|
||||
|
||||
%.png: %.dot
|
||||
echo dot -Tpng < $< > $@
|
9
ucloud-ipv6-networks.dot
Normal file
9
ucloud-ipv6-networks.dot
Normal file
|
@ -0,0 +1,9 @@
|
|||
digraph G {
|
||||
ucloud_api [shape=box];
|
||||
ucloud_router [shape=box];
|
||||
ucloud_nat64 [shape=box];
|
||||
|
||||
ucloud_api -> REQUEST_SLASH_64 [label="Requested by user" style="dotted"];
|
||||
ucloud_router -> HAS_SLASH_64 [label="Requested by user" style="dotted"];
|
||||
|
||||
}
|
Loading…
Reference in a new issue