blob: 40c0960feba2a4fce91e858d90eb0d0c9b9cacdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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
|