
Since blockdiag seems a bit unmaintenained, let's just statically generate the SVGs but let's keep the source files in tree so we can modify the diagrams whenever we want, provided blockdiag exists in a foreseenable future :-) Closes-Bug: #2026345 Change-Id: I1cc078554ab149a9849c895e08c878180b7510b0
13 lines
568 B
Plaintext
13 lines
568 B
Plaintext
seqdiag {
|
|
API; Conductor; Scheduler; Source; Destination;
|
|
edge_length = 300;
|
|
span_height = 15;
|
|
activation = none;
|
|
default_note_color = white;
|
|
|
|
API -> Conductor [label = "cast", note = "resize_instance/migrate_server"];
|
|
Conductor => Scheduler [label = "call", note = "select_destinations"];
|
|
Conductor -> Destination [label = "cast", note = "prep_resize"];
|
|
Source <- Destination [label = "cast", leftnote = "resize_instance"];
|
|
Source -> Destination [label = "cast", note = "finish_resize"];
|
|
} |