-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdependency-hell
266 lines (264 loc) · 7.26 KB
/
dependency-hell
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
# Dream scenario
digraph G {
"Business processes" -> "Revenue"
"Business processes" -> "Cost"
"Revenue" -> "Provision"
"Revenue" -> "Develop"
"Revenue" -> "Configure"
"Cost" -> "Troubleshoot"
"Cost" -> "Re-create"
"Cost" -> "Configure"
"Cost" -> "Monitor"
"Provision" -> "Monolith"
"Provision" -> "Multi-tier"
"Provision" -> "API Mgmt"
"Provision" -> "Integration"
"Provision" -> "Rules"
"Provision" -> "Microservice"
"Provision" -> "FaaS"
"Provision" -> "AI/ML"
"Monitor" -> "Monolith"
"Monitor" -> "Multi-tier"
"Monitor" -> "API Mgmt"
"Monitor" -> "Integration"
"Monitor" -> "Rules"
"Monitor" -> "Microservice"
"Monitor" -> "FaaS"
"Monitor" -> "AI/ML"
"Develop" -> "Monolith"
"Develop" -> "Multi-tier"
"Develop" -> "API Mgmt"
"Develop" -> "Integration"
"Develop" -> "Rules"
"Develop" -> "Microservice"
"Develop" -> "FaaS"
"Develop" -> "AI/ML"
"Configure" -> "Monolith"
"Configure" -> "Multi-tier"
"Configure" -> "API Mgmt"
"Configure" -> "Integration"
"Configure" -> "Rules"
"Configure" -> "Microservice"
"Configure" -> "FaaS"
"Configure" -> "AI/ML"
"Troubleshoot" -> "Monolith"
"Troubleshoot" -> "Multi-tier"
"Troubleshoot" -> "API Mgmt"
"Troubleshoot" -> "Integration"
"Troubleshoot" -> "Rules"
"Troubleshoot" -> "Microservice"
"Troubleshoot" -> "FaaS"
"Troubleshoot" -> "AI/ML"
"Re-create" -> "FaaS"
"Re-create" -> "Multi-tier"
"Re-create" -> "API Mgmt"
"Re-create" -> "Integration"
"Re-create" -> "Rules"
"Re-create" -> "Microservice"
"Re-create" -> "AI/ML"
"Monolith" -> "Windows"
"Monolith" -> "Linux"
"Monolith" -> "Kubernetes"
"Monolith" -> "Legacy OS (UNIX/Z)"
"Multi-tier" -> "Windows"
"Multi-tier" -> "Linux"
"Multi-tier" -> "Kubernetes"
"API Mgmt" -> "Linux"
"API Mgmt" -> "Kubernetes"
"Integration" -> "Linux"
"Integration" -> "Kubernetes"
"Rules" -> "Linux"
"Rules" -> "Kubernetes"
"Microservice" -> "Linux"
"Microservice" -> "Kubernetes"
"FaaS" -> "Linux"
"FaaS" -> "Kubernetes"
"AI/ML" -> "Linux"
"AI/ML" -> "Kubernetes"
"Kubernetes" -> "Linux base image"
"Linux base image" -> "Linux"
"Windows" -> "x86"
"Windows" -> "ARM"
"Windows" -> "GPU"
"Windows" -> "Cloud"
"Linux" -> "x86"
"Linux" -> "ARM"
"Linux" -> "GPU"
"Linux" -> "Cloud"
"Linux" -> "Power/Z"
"Legacy OS (UNIX/Z)" -> "Power/Z"
"x86" -> "SAN"
"x86" -> "Local disk"
"x86" -> "SDS"
"x86" -> "Cloud storage"
"x86" -> "Cloud SDN"
"x86" -> "HW network"
"x86" -> "SDN"
"SDS" -> "Cloud storage"
"SDN" -> "Cloud SDN"
"ARM" -> "SAN"
"ARM" -> "SDS"
"ARM" -> "Local disk"
"ARM" -> "Cloud storage"
"ARM" -> "Cloud SDN"
"ARM" -> "HW network"
"ARM" -> "SDN"
"Power/Z" -> "SAN"
"Power/Z" -> "Local disk"
"Power/Z" -> "SDN"
"Power/Z" -> "SDS"
"Cloud" -> "Cloud SDN"
"Cloud" -> "Cloud storage"
}
# Container depdency hell
digraph G {
"Business processes" -> "Revenue"
"Business processes" -> "Revenue X"
"Business processes" -> "Cost"
"Revenue" -> "Provision"
"Revenue" -> "Develop"
"Revenue" -> "Configure"
"Revenue X" -> "Provision k8s 1.18"
"Revenue X" -> "Develop k8s 1.18"
"Revenue X" -> "Configure k8s 1.18"
"Cost" -> "Troubleshoot"
"Cost" -> "Re-create"
"Cost" -> "Configure"
"Cost" -> "Monitor"
"Cost" -> "Troubleshoot k8s 1.18"
"Cost" -> "Re-create k8s 1.18"
"Cost" -> "Configure k8s 1.18"
"Cost" -> "Monitor k8s 1.18"
"Provision" -> "Monolith"
"Provision" -> "Multi-tier"
"Provision" -> "API Mgmt"
"Provision" -> "Integration"
"Provision k8s 1.18" -> "Integration k8s 1.18"
"Provision" -> "Rules"
"Provision k8s 1.18" -> "Rules k8s 1.18"
"Provision" -> "Microservice"
"Provision k8s 1.18" -> "Microservice k8s 1.18"
"Provision" -> "FaaS"
"Provision" -> "AI/ML"
"Provision k8s 1.18" -> "AI/ML k8s 1.18"
"Monitor" -> "Monolith"
"Monitor" -> "Multi-tier"
"Monitor" -> "API Mgmt"
"Monitor" -> "Integration"
"Monitor k8s 1.18" -> "Integration k8s 1.18"
"Monitor" -> "Rules"
"Monitor k8s 1.18" -> "Rules k8s 1.18"
"Monitor" -> "Microservice"
"Monitor k8s 1.18" -> "Microservice k8s 1.18"
"Monitor" -> "FaaS"
"Monitor" -> "AI/ML"
"Monitor k8s 1.18" -> "AI/ML k8s 1.18"
"Develop" -> "Monolith"
"Develop" -> "Multi-tier"
"Develop" -> "API Mgmt"
"Develop" -> "Integration"
"Develop k8s 1.18" -> "Integration k8s 1.18"
"Develop" -> "Rules"
"Develop k8s 1.18" -> "Rules k8s 1.18"
"Develop" -> "Microservice"
"Develop k8s 1.18" -> "Microservice k8s 1.18"
"Develop" -> "FaaS"
"Develop" -> "AI/ML"
"Develop k8s 1.18" -> "AI/ML k8s 1.18"
"Configure" -> "Monolith"
"Configure" -> "Multi-tier"
"Configure" -> "API Mgmt"
"Configure" -> "Integration"
"Configure k8s 1.18" -> "Integration k8s 1.18"
"Configure" -> "Rules"
"Configure k8s 1.18" -> "Rules k8s 1.18"
"Configure" -> "Microservice"
"Configure k8s 1.18" -> "Microservice k8s 1.18"
"Configure" -> "FaaS"
"Configure" -> "AI/ML"
"Troubleshoot" -> "Monolith"
"Troubleshoot" -> "Multi-tier"
"Troubleshoot" -> "API Mgmt"
"Troubleshoot" -> "Integration"
"Troubleshoot k8s 1.18" -> "Integration k8s 1.18"
"Troubleshoot" -> "Rules"
"Troubleshoot k8s 1.18" -> "Rules k8s 1.18"
"Troubleshoot" -> "Microservice"
"Troubleshoot k8s 1.18" -> "Microservice k8s 1.18"
"Troubleshoot" -> "FaaS"
"Troubleshoot" -> "AI/ML"
"Troubleshoot k8s 1.18" -> "AI/ML k8s 1.18"
"Re-create" -> "FaaS"
"Re-create" -> "Multi-tier"
"Re-create" -> "API Mgmt"
"Re-create" -> "Integration"
"Re-create k8s 1.18" -> "Integration k8s 1.18"
"Re-create" -> "Rules"
"Re-create" -> "Rules"
"Re-create" -> "Microservice"
"Re-create k8s 1.18" -> "Microservice k8s 1.18"
"Re-create" -> "AI/ML"
"Re-create k8s 1.18" -> "AI/ML k8s 1.18"
"Monolith" -> "Windows"
"Monolith" -> "Linux"
"Monolith" -> "Kubernetes"
"Monolith" -> "Legacy OS (UNIX/Z)"
"Multi-tier" -> "Windows"
"Multi-tier" -> "Linux"
"Multi-tier" -> "Kubernetes"
"API Mgmt" -> "Linux"
"API Mgmt" -> "Kubernetes"
"Integration" -> "Linux"
"Integration" -> "Kubernetes"
"Integration k8s 1.18" -> "Kubernetes 1.18"
"Rules" -> "Linux"
"Rules" -> "Kubernetes"
"Rules k8s 1.18" -> "Kubernetes 1.18"
"Microservice" -> "Linux"
"Microservice" -> "Kubernetes"
"Microservice k8s 1.18" -> "Kubernetes 1.18"
"FaaS" -> "Linux"
"FaaS" -> "Kubernetes"
"AI/ML" -> "Linux"
"AI/ML" -> "Kubernetes"
"AI/ML k8s 1.18" -> "Kubernetes 1.18"
"Kubernetes" -> "Linux base image"
"Kubernetes 1.18" -> "Linux base image X"
"Linux base image" -> "Linux"
"Linux base image X" -> "Linux X"
"Windows" -> "x86"
"Windows" -> "ARM"
"Windows" -> "GPU"
"Windows" -> "Cloud"
"Linux" -> "x86"
"Linux" -> "ARM"
"Linux" -> "GPU"
"Linux" -> "Cloud"
"Linux X" -> "Cloud X"
"Linux" -> "Power/Z"
"Legacy OS (UNIX/Z)" -> "Power/Z"
"x86" -> "SAN"
"x86" -> "Local disk"
"x86" -> "SDS"
"x86" -> "Cloud storage"
"x86" -> "Cloud SDN"
"x86" -> "HW network"
"x86" -> "SDN"
"SDS" -> "Cloud storage"
"SDN" -> "Cloud SDN"
"ARM" -> "SAN"
"ARM" -> "SDS"
"ARM" -> "Local disk"
"ARM" -> "Cloud storage"
"ARM" -> "Cloud SDN"
"ARM" -> "HW network"
"ARM" -> "SDN"
"Power/Z" -> "SAN"
"Power/Z" -> "Local disk"
"Power/Z" -> "SDN"
"Power/Z" -> "SDS"
"Cloud" -> "Cloud storage"
"Cloud" -> "Cloud SDN"
"Cloud X" -> "Cloud X storage"
"Cloud X" -> "Cloud X SDN"
}