introduce all major states

This commit is contained in:
Nico Schottelius 2019-07-30 14:39:10 +02:00
parent 93392e2e6b
commit 0fc5a5280d
2 changed files with 26 additions and 6 deletions

View File

@ -1,6 +0,0 @@
digraph G {
ucloud_scheduler [shape=box];
ucloud_api [shape=box];
ucloud_api -> NEW;
}

26
ucloud-vm-states.dot Normal file
View File

@ -0,0 +1,26 @@
digraph G {
ucloud_scheduler [shape=box];
ucloud_api [shape=box];
ucloud_vm [shape=box];
ucloud_scheduler -> SCHEDULED_FOR_DEPLOY [style="dotted"];
ucloud_api -> NEW [label="Requested by user" style="dotted"];
ucloud_api -> SUSPENDED [label="Requested by user" style="dotted"];
ucloud_api -> DELETED [label="Requested by user" style="dotted"];
ucloud_vm -> RUNNING [style="dotted"];
{ rank = same;
ucloud_scheduler;
ucloud_api;
ucloud_vm;
}
NEW -> SCHEDULED_FOR_DEPLOY [label="ucloud_scheduler selects hosts"];
SCHEDULED_FOR_DEPLOY -> RUNNING [label="ucloud_vm starts VM"];
RUNNING -> SUSPENDED;
SUSPENDED -> SCHEDULED_FOR_DEPLOY;
RUNNING -> DELETED;
}