
This patch updates the state machine diagram for action plan, It includes new state "cancelling" which is introduced by actionplan cancel operation Change-Id: I0af59f2164922c56d59fbad8018e2aecfef97098
21 lines
1.0 KiB
Plaintext
21 lines
1.0 KiB
Plaintext
@startuml
|
|
|
|
[*] --> RECOMMENDED: The Watcher Planner\ncreates the Action Plan
|
|
RECOMMENDED --> PENDING: Adminisrator launches\nthe Action Plan
|
|
PENDING --> ONGOING: The Watcher Applier receives the request\nto launch the Action Plan
|
|
ONGOING --> FAILED: Something failed while executing\nthe Action Plan in the Watcher Applier
|
|
ONGOING --> SUCCEEDED: The Watcher Applier executed\nthe Action Plan successfully
|
|
FAILED --> DELETED : Administrator removes\nAction Plan
|
|
SUCCEEDED --> DELETED : Administrator removes\nAction Plan
|
|
ONGOING --> CANCELLING : Administrator cancels\nAction Plan
|
|
CANCELLING --> CANCELLED : The Watcher Applier cancelled\nthe Action Plan successfully
|
|
CANCELLING --> FAILED : Something failed while cancelling\nthe Action Plan in the Watcher Applier
|
|
RECOMMENDED --> CANCELLED : Administrator cancels\nAction Plan
|
|
RECOMMENDED --> SUPERSEDED : The Watcher Decision Engine supersedes\nAction Plan
|
|
PENDING --> CANCELLED : Administrator cancels\nAction Plan
|
|
CANCELLED --> DELETED
|
|
SUPERSEDED --> DELETED
|
|
DELETED --> [*]
|
|
|
|
@enduml
|