-
Notifications
You must be signed in to change notification settings - Fork 0
/
DevOpsMap.json
187 lines (184 loc) · 5.88 KB
/
DevOpsMap.json
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"Automated Testing":{
"Description" : "Automating tests",
"BetterTogetherWith":[
"Exploratory Testing",
"Code Quality Scans"
],
"ReducesFailureOf":[
"Continuous Integration"
]
},
"Unit Testing":{
"Description": "Test units of code independently",
"Enables":[
"Continuous Integration"
]
},
"Code Quality Scans":{
"Descriptions": "Scanning code for quality and raising work to remediate",
"BetterTogetherWith":[
"Agile Work ( Kanban/Scrum )",
"Automated Testing"
]
},
"Agile Work ( Kanban/Scrum )":{
"Description": "Planning and organising work using agile methods",
"ReducesFailureOf":[
"Test Driven Development"
],
"Enables":["Branching Strategy"]
},
"Branching Strategy":{
"Description": "A strategy for version control branching",
"Enables":[
"Repository Composition",
"Parametrised Infrastructure as Code"
],
"ReducesFailureOf":[
"Continuous Integration",
"Infrastructure as Code"
]
},
"Repository Composition":{
"Description": "Mono repository or Macro repositories, slice by function or domain"
},
"Infrastructure as Code":{
"Description": "Code that automates the build or defines infrastructure",
"Enables":[
"Continuous Delivery",
"Parametrised Infrastructure as Code"
],
"ReducesFailureOf":[
"Continuous Delivery",
"Parametrised Infrastructure as Code"
]
},
"Parametrised Infrastructure as Code":{
"Description": "Re usable IaC for all environments using parameters"
},
"Dark Launching" :{
"Description": "Decouple deployment from release of features",
"ReducesFailureOf":[
"Continuous Deployment"
]
},
"Test Driven Development":{
"Description": "Using ",
"ReducesFailureOf":[
"Unit Testing",
"Automated Testing"
]
},
"Exploratory Testing":{
"Description": "Manually exploring the edges to find new tests to automate",
"BetterTogetherWith":[
"Automated Testing"
]
},
"Continuous Integration":{
"Description" : "Automatically integrate code from all sources, build and run ready for test",
"Enables":[
"Continuous Delivery",
"Immutable Artefacts"
]
},
"Semantic Versioning":{
"Description": "Using Semantic Versioning to understand the application & component versions",
"Enables": [
"Release Views"
],
"ReducesFailureOf":[
"Immutable Artefacts"
]
},
"Separation of internal versioning from Marketing versioning":{
"Description": "Separating internal versioning from Customer facing and Marketing versioning of a product"
},
"Release Views": {
"Description": "Application or Component artefacts are versioned using Sem Ver but only some are released via a view",
"ReducesFailureOf":[
"Semantic Versioning"
],
"Enables":[
"Separation of internal versioning from Marketing versioning"
]
},
"Immutable Artefacts":{
"Description": "Build artefacts are immutable",
"ReducesFailureOf":[
"Continuous Integration"
],
"Enables":[
"Semantic Versioning"
]
},
"Containerised Application":{
"Description":"Containerising an application",
"ReducesFailureOf":[
"Continuous Deployment"
]
},
"Continuous Delivery":{
"Description" : "Automatically build latest integrated code, prepare ready to run in production",
"Enables":[
"Continuous Deployment",
"Containerised Application"
],
"BetterTogetherWith":[ "Secrets Vault" ]
},
"Secrets Vault":{
"Description": "Secure secrets and remove from all code and configuration",
"BetterTogetherWith":[
"Continuous Delivery",
"Continuous Deployment"
]
},
"Continuous Deployment":{
"Description" : "Deploy the latest build to production automatically",
"Enables":[
"Dark Launching",
"Crops not Garden plants",
"Canary Releases",
"Blue/Green Deployment",
"Microservice Ecosystem"
],
"BetterTogetherWith":[ "Secrets Vault" ]
},
"Feature Toggles":{
"Description": "Configuration toggles for features",
"ReducesFailureOf":[
"Microservice Ecosystem"
],
"BetterTogetherWith":[
"Config Database/Git"
]
},
"Config Database/Git":{
"Description": "Storing configruation in a Database or in Git",
"BetterTogetherWith":[
"Feature Toggles"
]
},
"Microservice Ecosystem":{
"Description": "Microservices, macro services or api ecosystem"
},
"Blue/Green Deployment":{
"Description": "Deploying to an alternative production environment, final testing and switch over"
},
"Canary Releases":{
"Description": "Rolling out changes to a small subset of users before all users"
},
"Chaos Agent":{
"Description": "A chaos agent randomly unplugs, disables, breaks things to test resiliency",
"ReducesFailureOf":[
"Continuous Deployment"
]
},
"Crops not Garden plants":{
"Description": "Crops are grown at scale for commercial use, don't get attached. Pet plants in the Garden are loved and tended too individually rather than for ruthless efficiency",
"ReducesFailureOf":[
"Continuous Deployment"
]
}
}