doc: schema for business and technical explanation

This commit is contained in:
RouxAntoine 2024-01-12 23:02:56 +01:00
parent a9979519da
commit 64657bbe1b
Signed by: antoine
GPG Key ID: 098FB66FC0475E70
4 changed files with 9 additions and 1 deletions

View File

@ -2,4 +2,12 @@
run firecracker in netns namespace
The following structure is setup in this repository
![img.png](./docs/business-schema.png)
The official visual explanation of firecracker
![img.png](./docs/firecracker-schema.png)
documentation [docs](./docs)

BIN
docs/business-schema.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 256 KiB

BIN
docs/firecracker-schema.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 271 KiB

View File

@ -82,7 +82,7 @@ func CreateTap(tapNetwork net.IPNet, externalLinkName string) (*Tap, error) {
return nil, err
}
// Ip tapAddr add <tap Network> dev tap0
// ip addr add <tap Network> dev tap0
err = netlink.AddrAdd(tap, &netlink.Addr{
IPNet: &tapNetwork,
})