diff options
author | liamfallon <liam.fallon@est.tech> | 2019-05-28 13:27:04 +0000 |
---|---|---|
committer | liamfallon <liam.fallon@est.tech> | 2019-05-28 13:27:04 +0000 |
commit | c9e2790646530c9546ecbf0038248cfdf663521c (patch) | |
tree | 3ca387794e2fcb370bd685d87f52b0523e34904f /docs/architecture/plantuml/PolicyRollout.puml | |
parent | e62f711b12a3d2340172e8b6d608989197bf4dc9 (diff) |
Complete Architecture Document
Issue-ID: POLICY-1676
Change-Id: Ic0a631dbc27c69455cfc4b0cc12ed7bd1131cce8
Signed-off-by: liamfallon <liam.fallon@est.tech>
Diffstat (limited to 'docs/architecture/plantuml/PolicyRollout.puml')
-rw-r--r-- | docs/architecture/plantuml/PolicyRollout.puml | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/docs/architecture/plantuml/PolicyRollout.puml b/docs/architecture/plantuml/PolicyRollout.puml new file mode 100644 index 00000000..40c0960f --- /dev/null +++ b/docs/architecture/plantuml/PolicyRollout.puml @@ -0,0 +1,43 @@ +@startuml + +title Policy Rollout + +actor User +participant PAP +participant PDP + +autonumber +User --> PAP: Create Policy Set for PDP Group + +loop over PDP Group + ref over PAP, PDP: PAP downloads Policy Set to PDP +end + +User --> PAP: Set PDP Group in Test Mode + +loop over PDP Group + PAP --> PDP: Set PDP in TEST mode +end + +PDP --> PAP: Report test results +PAP --> User: Report consolidated test results + +User --> PAP: Set PDP Group in Safe Mode +loop over PDP Group + PAP --> PDP: Set PDP in SAFE mode +end + +PDP --> PAP: Report safe mode operation results +PAP --> User: Report consolidated safe mode operation results + +User --> PAP: Set PDP Group in Active Mode +loop over PDP Group + PAP --> PDP: Set PDP in Active mode +end + +loop forever + PDP --> PAP: Report active mode operation results + PAP --> User: Report consolidated active mode operation results +end + +@enduml
\ No newline at end of file |