mirror of
https://github.com/kernelkit/infix.git
synced 2026-08-06 07:33:01 +02:00
Rename test directories in infix_containers/ to remove the redundant 'container_' prefix since they already live under infix_containers/: container_basic -> basic container_bridge -> bridge container_enabled -> enabled container_environment -> environment container_firewall_basic -> firewall_basic container_host_commands -> host_commands container_phys -> phys container_veth -> veth container_volume -> volume Also update references in all.yaml and Readme.adoc files. Signed-off-by: Joachim Wiberg <troglobit@gmail.com>
25 lines
606 B
Plaintext
25 lines
606 B
Plaintext
graph "1x2" {
|
|
layout="neato";
|
|
overlap="false";
|
|
esep="+80";
|
|
|
|
node [shape=record, fontname="DejaVu Sans Mono, Book"];
|
|
edge [color="cornflowerblue", penwidth="2", fontname="DejaVu Serif, Book"];
|
|
|
|
host [
|
|
label="host | { <mgmt> mgmt | <data> data }",
|
|
pos="0,12!",
|
|
requires="controller",
|
|
];
|
|
|
|
target [
|
|
label="{ <mgmt> mgmt | <ext0> ext0 } | target",
|
|
pos="10,12!",
|
|
|
|
requires="infix",
|
|
];
|
|
|
|
host:mgmt -- target:mgmt [requires="mgmt", color=lightgrey]
|
|
host:data -- target:ext0 [color=black, headlabel=".1 ", taillabel=" .2", label="\n 192.168.0.1/24 "]
|
|
}
|