-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdecision-frame.json
More file actions
64 lines (64 loc) · 1.58 KB
/
Copy pathdecision-frame.json
File metadata and controls
64 lines (64 loc) · 1.58 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
{
"question": "Which deployment path should we use?",
"criteria": [
{
"id": "safety",
"weight": 0.4,
"description": "Operational safety"
},
{
"id": "reversibility",
"weight": 0.25,
"description": "Ease of rollback"
},
{
"id": "speed",
"weight": 0.15,
"description": "Time to value"
},
{
"id": "cost",
"weight": 0.2,
"description": "Total cost"
}
],
"options": [
{
"name": "canary",
"scores": {
"safety": 0.95,
"reversibility": 0.95,
"speed": 0.65,
"cost": 0.7
},
"evidence_confidence": 0.9,
"hard_blocks": [],
"reversible": true,
"description": "Roll out to 5% of traffic behind a flag, watch error-rate alarms, roll back automatically."
},
{
"name": "big-bang",
"scores": {
"safety": 0.45,
"reversibility": 0.3,
"speed": 0.95,
"cost": 0.8
},
"evidence_confidence": 0.75,
"hard_blocks": [],
"reversible": false,
"description": "Deploy to all regions at once during the maintenance window; rollback means restoring the database snapshot."
},
{
"name": "blue-green",
"description": "Stand up a full parallel environment and switch the load balancer; switching back takes one command, but the parallel stack doubles infrastructure cost for a day.",
"scores": {
"safety": 0.85,
"reversibility": 0.9
},
"evidence_confidence": 0.7,
"hard_blocks": [],
"reversible": true
}
]
}