File: sequence_launch_action_plan.txt

package info (click to toggle)
watcher 14.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,764 kB
  • sloc: python: 48,904; xml: 312; sh: 265; makefile: 75
file content (23 lines) | stat: -rw-r--r-- 553 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@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