b9231f65cc
We introduced a new watcher plugin for OpenStack CLI. This patchset updates accordingly the watcher documentation and schemas. Partially Implements: blueprint openstackclient-plugin Change-Id: Ib00469c8645fff21f5ba95951379827dbd359c69
24 lines
553 B
Plaintext
24 lines
553 B
Plaintext
@startuml
|
|
|
|
actor Administrator
|
|
|
|
Administrator -> "Watcher CLI" : watcher actionplan start <action_plan_uuid>
|
|
|
|
"Watcher CLI" -> "Watcher API" : PATCH action_plan(state=PENDING)
|
|
"Watcher API" -> "Watcher Database" : action_plan.state=PENDING
|
|
|
|
"Watcher CLI" <-- "Watcher API" : HTTP 200
|
|
|
|
Administrator <-- "Watcher CLI" : OK
|
|
|
|
"Watcher API" -> "AMQP Bus" : launch_action_plan(action_plan.uuid)
|
|
"AMQP Bus" -> "Watcher Applier" : launch_action_plan(action_plan.uuid)
|
|
|
|
ref over "Watcher Applier"
|
|
Launch Action Plan in the
|
|
Watcher Applier
|
|
end ref
|
|
|
|
@enduml
|
|
|