ef9cbc0017
Per the spec [1]: user/ – end-user content such as concept guides, advice, tutorials, step-by-step instructions for using the CLI to perform specific tasks, etc. The remaining content all ends up in here. [1] specs.openstack.org/openstack/docs-specs/specs/pike/os-manuals-migration Change-Id: I480eee9cd7568efe2f76dd185004774588eb4a99
29 lines
1019 B
Plaintext
29 lines
1019 B
Plaintext
seqdiag {
|
|
edge_length = 250;
|
|
span_height = 40;
|
|
node_width=200;
|
|
default_note_color = lightblue;
|
|
|
|
// Use note (put note on rightside)
|
|
api [label="Compute.api"];
|
|
manager [label="Compute.manager"];
|
|
api -> manager [label = "create_db_entry_for_new_instance",
|
|
note = "VM: Building
|
|
Task: Scheduling
|
|
Power: No State"];
|
|
manager -> manager [label="_start_building",
|
|
note ="VM: Building
|
|
Task: None"];
|
|
manager -> manager [label="_allocate_network",
|
|
note ="VM: Building
|
|
Task: Networking"];
|
|
manager -> manager [label="_prep_block_device",
|
|
note ="VM: Building
|
|
Task: Block_Device_Mapping"];
|
|
manager -> manager [label="_spawn",
|
|
note ="VM: Building
|
|
Task: Spawning"];
|
|
api <-- manager [note ="VM: Active
|
|
Task: None"];
|
|
}
|