Start flows
This commit is contained in:
parent
5058891211
commit
0bb3d9c75c
1 changed files with 31 additions and 0 deletions
31
cdn-flow-traffic.dot
Normal file
31
cdn-flow-traffic.dot
Normal file
|
@ -0,0 +1,31 @@
|
|||
digraph G {
|
||||
node [ shape=box ]
|
||||
rankdir=LR;
|
||||
|
||||
label="CDN Traffic flow"
|
||||
|
||||
subgraph cluster_homedc {
|
||||
label="HomeDC"
|
||||
|
||||
|
||||
kubemaster [ label="Kubernetes master nodes" ]
|
||||
kubeworker [ label="Kubernetes worker nodes" ]
|
||||
|
||||
subgraph cluster_kubernetes {
|
||||
label="Kubernetes Workload"
|
||||
|
||||
api [ label="APIs" ]
|
||||
}
|
||||
}
|
||||
kubemaster->kubeworker [ label="Controls" ]
|
||||
api->kubeworker [ label="Runs on" ]
|
||||
|
||||
subgraph cluster_pops {
|
||||
label="PoP"
|
||||
|
||||
servicenode [ label="Service Node" ]
|
||||
edgenode [ label="Edge nodes" ]
|
||||
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue