-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCM_standard_change.dot
More file actions
105 lines (91 loc) · 2.47 KB
/
Copy pathCM_standard_change.dot
File metadata and controls
105 lines (91 loc) · 2.47 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
digraph {
fontname="Verdana";
label = "Standard change - v 1.0"
node[fontname="Verdana", style=rounded]
rankdir = TB;
subgraph cluster_0 {
label="Change Requester";
start[
shape=box,
style="rounded,filled",
color=green,
fontcolor=black,
label="Start"];
select_change[
shape=box,
style=filled,
color=blue,
fontcolor=white,
label="Select change from template"];
}
subgraph cluster_1 {
label="Change Implementer";
build_and_implement[
shape=box,
style=filled,
color=blue,
fontcolor=white,
label="Build and implement change"];
change_working[
shape=diamond,
style=filled,
color=yellow,
label="Successful\nchange?"];
close_record[
shape=box,
style="rounded,filled",
color=green,
fontcolor=black,
label="Close RFC"];
backout_change[
shape=diamond,
style=filled,
color=yellow,
label="Rollback\nchange?"];
execute_backout[
shape=box,
style=filled,
color=blue,
fontcolor=white,
label="Perform rollback"];
implementation_review[
shape=box,
style=filled,
color=blue,
fontcolor=white,
label="Implementation review"];
}
subgraph cluster_2 {
label="Change Manager";
review_at_cab[
shape=box,
style=filled,
color=blue,
fontcolor=white,
label="Review at CAB"];
close_record2[
shape=box,
style="rounded,filled",
color=green,
fontcolor=black,
label="Close RFC"];
}
start->select_change
select_change -> build_and_implement[constraint=false]
build_and_implement -> change_working
change_working -> close_record[
label=Yes
]
change_working -> backout_change[
label=No
]
backout_change -> execute_backout [
label=Yes
]
backout_change -> implementation_review[
label=No
]
execute_backout -> implementation_review
implementation_review -> review_at_cab[constraint=false]
review_at_cab -> close_record2
}