mirror of
https://github.com/cupcakearmy/master-thesis.git
synced 2026-04-02 11:55:30 +00:00
Clear History
This commit is contained in:
24
thesis/diagrams/link_lifecycle.mmd
Normal file
24
thesis/diagrams/link_lifecycle.mmd
Normal file
@@ -0,0 +1,24 @@
|
||||
stateDiagram-v2
|
||||
|
||||
direction LR
|
||||
|
||||
state Creation {
|
||||
state "NetworkChaos" as nc0
|
||||
state "Labels" as l0
|
||||
[*] --> nc0: Create and adopt
|
||||
nc0 --> l0: Patch
|
||||
l0 --> [*]
|
||||
}
|
||||
[*] --> Creation
|
||||
|
||||
Creation --> Running
|
||||
|
||||
state Deletion {
|
||||
state "NetworkChaos" as nc1
|
||||
state "Labels" as l1
|
||||
[*] --> l1: Cascade deletion
|
||||
l1 --> nc1: Patch
|
||||
nc1 --> [*]
|
||||
}
|
||||
Running --> Deletion
|
||||
Deletion --> [*]
|
||||
Reference in New Issue
Block a user