-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreferences.bib
1080 lines (964 loc) · 39.8 KB
/
references.bib
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@electronic{microsoft_exand_swiss,
author = {{Microsoft}},
title = {{Microsoft Cloud Services Expand in Europe including New Swiss Datacenters}},
url = "https://news.microsoft.com/de-ch/2018/03/14/microsoft-cloud-services-expand-in-europe-including-new-swiss-datacenters/",
year = 2018,
month = Mar,
day = 14,
urldate = "2020-03-21",
}
@electronic{microsoft_ubs,
author = {{Microsoft}},
title = {{UBS taps Microsoft Cloud to power business-critical tech}},
url = "https://news.microsoft.com/2017/04/26/ubs-taps-microsoft-cloud-power-business-critical-tech/",
year = 2017,
month = Apr,
day = 26,
urldate = "2020-03-21",
}
@electronic{microsoft_azure_case,
author = {{Microsoft}},
title = {{Azure case studies in Switzerland}},
url = "https://azure.microsoft.com/en-us/case-studies/?country=Switzerland",
year = 2020,
urldate = "2020-03-21",
}
@electronic{cloudtrend_world,
author = {{Google LLC}},
title = {{Google Trends: Public Cloud Providers 1, worldwide}},
url = "https://trends.google.com/trends/explore?date=2010-02-23%202020-02-23&q=%2Fm%2F04y7lrx,%2Fm%2F0105pbj4,%2Fm%2F05nrgx,%2Fm%2F0h1djyq,%2Fg%2F11h9q1kdd2",
year = 2020,
urldate = "2020-03-20",
}
@electronic{cloudtrend_world_2,
author = {{Google LLC}},
title = {{Google Trends: Public Cloud Providers 2, worldwide}},
url = "https://trends.google.com/trends/explore?date=2010-02-23%202020-02-23&q=%2Fm%2F04y7lrx,%2Fm%2F0105pbj4,%2Fm%2F05nrgx,%2Fm%2F0h1djyq,%2Fg%2F155sx68m",
year = 2020,
urldate = "2020-05-21",
}
@electronic{cloudtrend_swiss,
author = {{Google LLC}},
title = {{Google Trends: Public Cloud Providers, Switzerland}},
url = "https://trends.google.com/trends/explore?date=2010-02-23%202020-02-23&geo=CH&q=%2Fm%2F04y7lrx,%2Fm%2F0105pbj4,%2Fm%2F05nrgx,Swisscom%20Cloud",
year = 2020,
urldate = "2020-03-20",
}
@electronic{devopstrend,
author = {{Google LLC}},
title = {{Google Trends: DevOps vs ITIL vs Scrum}},
url = "https://trends.google.com/trends/explore?date=2010-02-23%202020-02-23&q=%2Fm%2F0c3tq11,%2Fm%2F012zw6kw,%2Fm%2F0ck_p8",
year = 2020,
urldate = "2020-03-20",
}
@book{cna_patterns,
author = "Cornelia Davis",
title = "Cloud Native Patterns: Designing change-tolerant software",
publisher = "Manning Publications",
edition = "First",
year = "2019",
month = may,
url = "https://www.manning.com/books/cloud-native-patterns",
isbn = "978-1617294297",
pages = {3-25},
keywords = "cloud-native, apps, architecture, kubernetes, software, code, apps, delivery, pattern",
}
@techreport{cloud_def_nist,
author = {Mell, Peter M. and Grance, Timothy},
title = {SP 800-145. The NIST Definition of Cloud Computing},
year = {2011},
publisher = {National Institute of Standards & Technology},
address = {Gaithersburg, MD, USA}
}
@techreport{cloud_def_nist_eval,
author = {Simmons, Eric D.},
title = {Evaluation of Cloud Computing Services Based on NIST SP 800-145},
year = {2018},
publisher = {National Institute of Standards & Technology},
address = {Gaithersburg, MD, USA},
abstract = "This document provides clarification for qualifying a given computing capability as a cloud service by determining if it aligns with the NIST definition of cloud computing; and for categorizing a cloud service according to the most appropriate service model (SaaS, PaaS, or IaaS).",
}
@article{faas_status,
author = {Geoffrey C. Fox and
Vatche Ishakian and
Vinod Muthusamy and
Aleksander Slominski},
title = {Status of Serverless Computing and Function-as-a-Service(FaaS) in
Industry and Research},
journal = {CoRR},
volume = {abs/1708.08028},
year = {2017},
url = {http://arxiv.org/abs/1708.08028},
archivePrefix = {arXiv},
eprint = {1708.08028},
timestamp = {Mon, 13 Aug 2018 16:46:23 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-1708-08028.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@electronic{cloud_multicast,
author = {{Weaveworks}},
title = {{Container Multicast Networking: Docker and Kubernetes}},
url = "https://www.weave.works/use-cases/multicast-networking",
year = 2020,
urldate = "2020-05-22",
}
@article{hc_patterns,
author = {D. S. {Linthicum}},
journal = {IEEE Cloud Computing},
title = {Emerging Hybrid Cloud Patterns},
year = {2016},
volume = {3},
number = {1},
pages = {88-91}
}
@article{orchestrating_ha_deployment,
author = {Moreno-Vozmediano, R. and Montero, R. S. and Huedo, E. and Llorente, I. M.},
title = {Orchestrating the Deployment of High Availability Services on Multi-zone and Multi-cloud Scenarios},
year = {2018},
issue_date = {March 2018},
volume = {16},
issn = {1572-9184},
url = {https://doi.org/10.1007/s10723-017-9417-z},
doi = {10.1007/s10723-017-9417-z},
journal = {Journal of Grid Computing},
month = mar,
pages = "39-53",
keywords = {and build process, DevOps, versioning, release process, continuous (delivery, deployment, integration), configuration management},
abstract = "Cloud computing has become one of the most used platforms to deploy High Availability (HA) solutions for its flexibility, on-demand provisioning, and elasticity. However, although many providers offer specific tools for HA support, like floating IPs and load balancing, the analysis of downtime at public cloud providers in previous years shows that a combination of several availability zones or cloud providers is required to achieve “five nines” availability. Besides reducing the chances of failure, the use of multiple availability zones and geographically distributed clouds may additionally bring performance and cost benefits. However, the orchestration, in an efficient and adaptive way, of HA multi-tier services in multi-zone and multi-cloud environments brings several challenges. This paper presents a novel orchestration method to automate the deployment and management of high availability multi-tier services on multiple availability zones, by introducing new affinity mechanisms, such as VM to location and role to role affinity/anti-affinity rules. Furthermore, we also extend this solution to multi-cloud scenarios, based on the replication or distribution of the service components among various clouds, along with their corresponding affinity rules."
}
@InProceedings{failure_aware_placement,
author = {T. { Suk } and J. { Hwang } and M. F. { Bulut } and Z. { Zeng }},
booktitle = {2019 IEEE 12th International Conference on Cloud Computing (CLOUD)},
title = {Failure-Aware Application Placement Modeling and Optimization in High Turnover DevOps Environment},
year = 2019,
pages = {115-123},
keywords = {cloud computing;program testing;software engineering;Kubernetes;cloud infrastructure;infrastructure failures;proactive application placement algorithms;failure-risk measurements;Failure-Index;application turnover;high turnover DevOps environment;cluster orchestration frameworks;failure-aware application placement modeling;software development and information technology operations;Docker Swarm;Microservices;Placement Algorithm},
doi = {10.1109/CLOUD.2019.00030},
ISSN = {2159-6182},
month = jul
}
@book{cd_cloud_computing,
author = "Jez Humble and David Farley",
title = "Continuous Delivery: Reliable Software Releases through Build, Test, and Deployment Automation: Cloud Computing",
publisher = "Addison-Wesley",
series = "Addison Wesley Signature Series",
edition = "First",
year = "2010",
month = jul,
pages = {312-317},
isbn = "978-0-321-60191-9",
}
@inproceedings{federated_paas,
TITLE = {{A Federated Multi-Cloud PaaS Infrastructure}},
AUTHOR = {Paraiso, Fawaz and Haderer, Nicolas and Merle, Philippe and Rouvoy, Romain and Seinturier, Lionel},
URL = {https://hal.inria.fr/hal-00694700},
BOOKTITLE = {{5th IEEE International Conference on Cloud Computing}},
ADDRESS = {hawaii, United States},
PAGES = {392 - 399},
YEAR = {2012},
MONTH = Jun,
DOI = {10.1109/CLOUD.2012.79},
KEYWORDS = {Federation ; PaaS ; SaaS ; SCA ; interoperability},
PDF = {https://hal.inria.fr/hal-00694700/file/paper.pdf},
HAL_ID = {hal-00694700},
HAL_VERSION = {v1},
}
@electronic{paas_players,
author = {{G2.com, Inc}},
title = {{Best Cloud Paas Software}},
url = "https://www.g2.com/categories/cloud-platform-as-a-service-paas?utf8=%E2%9C%93&selected_view=grid#grid",
year = 2020,
urldate = "2020-04-26",
}
@electronic{gartner_paas_trends,
author = {{Gartner, Inc.}},
title = {{Gartner Identifies Key Trends in PaaS and Platform Architecture for 2019 }},
url = "https://www.gartner.com/en/newsroom/press-releases/2019-04-29-gartner-identifies-key-trends-in-paas-and-platform-ar",
year = 2019,
urldate = "2020-04-26",
}
@electronic{github_repo_ranking,
author = {Ake Gaviar},
title = {{GitHub’s Top 100 Most Valuable Repositories Out of 96 Million}},
url = "https://hackernoon.com/githubs-top-100-most-valuable-repositories-out-of-96-million-bb48caa9eb0b",
year = 2020,
urldate = "2020-04-26",
}
@electronic{github_kubernetes,
author = {{GitHub, Inc.}},
title = "Repository kubernetes/kubernetes",
url = "https://github.com/kubernetes/kubernetes",
year = 2020,
urldate = "2020-04-26",
}
@electronic{github_openshift,
author = {{GitHub, Inc.}},
title = "Repository openshift/origin",
url = "https://github.com/openshift/origin",
year = 2020,
urldate = "2020-04-26",
}
@electronic{gitops,
author = "Beetz, Florian and Kammer, Anja and Harrer, Simon",
title = {{What is GitOps?}},
url = "https://www.gitops.tech/#what-is-gitops",
year = 2019,
urldate = "2020-04-13",
}
@electronic{gitops_push,
author = "Beetz, Florian and Kammer, Anja and Harrer, Simon",
title = {{GitOps push based deployments}},
url = "https://www.gitops.tech/#push-based-deployments",
year = 2019,
urldate = "2020-03-21",
}
@electronic{netflix_blog_fcdev,
key = {{Netflix blog contributors}},
title = {{Full Cycle Developers at Netflix — Operate What You Build}},
url = "https://netflixtechblog.com/full-cycle-developers-at-netflix-a08c31f83249",
year = 2018,
urldate = "2020-03-22",
}
@electronic{walmart_blog_oneops,
author = "Jackson, Joab",
title = {{DevOps the Walmart Way, with the Newly-Released OneOps Cloud Platform}},
url = "https://thenewstack.io/devops-walmart-way-newly-released-oneops-cloud-platform/",
year = 2016,
urldate = "2020-03-22",
}
@electronic{ing_blog_agile,
author = "Mahadevan, Deepak",
title = {{ING’s agile transformation}},
url = "https://www.mckinsey.com/industries/financial-services/our-insights/ings-agile-transformation",
year = 2017,
month = Jan,
urldate = "2020-03-22",
}
@electronic{infoq_ubs_agile,
author = "Linders, Ben",
title = {{Digital Factory on a Global Scale: Scaled Agile and DevOps at UBS}},
url = "https://www.infoq.com/news/2019/11/scaled-agile-devops-ubs/",
year = 2019,
month = Nov,
day = 7,
urldate = "2020-03-22",
}
@electronic{devops_topologies,
author = "Skelton, Matthew and Pais, Manuel",
title = {{DevOps Topologies}},
url = "https://web.devopstopologies.com/",
year = 2013,
urldate = "2020-03-22",
}
@electronic{atlassian_inc_metrics,
author = {{Atlassian}},
title = {{MTBF, MTTR, MTTA, and MTTF: Understanding a few of the most common incident metrics}},
url = "https://www.atlassian.com/incident-management/kpis/common-metrics",
year = 2020,
urldate = "2020-04-12",
}
@electronic{atlassian_cost_downtime,
author = {{Atlassian}},
title = {{Calculating the cost of downtime}},
url = "https://www.atlassian.com/incident-management/kpis/cost-of-downtime",
year = 2020,
urldate = "2020-05-26",
}
@electronic{k8_api_labels,
author = {{Kubernetes contributors}},
title = {{Working with Kubernetes Objects: Labels and Selectors}},
url = "https://kubernetes.io/docs/concepts/overview/working-with-objects/labels",
year = 2020,
urldate = "2020-04-12",
}
@electronic{k8_api_annotations,
author = {{Kubernetes contributors}},
title = {{Working with Kubernetes Objects: Annotations}},
url = "https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations",
year = 2020,
urldate = "2020-04-12",
}
@electronic{k8s_what_is,
author = {{Kubernetes contributors}},
title = {{What is Kubernetes?}},
url = "https://kubernetes.io/docs/concepts/overview/what-is-kubernetes",
year = 2020,
urldate = "2020-04-13",
}
% k8s offerings table
@electronic{k8s_offering_aks,
author = {{Microsoft}},
title = {{Azure Kubernetes Service (AKS)}},
url = {https://azure.microsoft.com/en-us/services/kubernetes-service/},
year = 2020,
urldate = {2020-04-13},
}
@electronic{k8s_offering_gke,
author = {{Google LLC}},
title = {{Google Kubernetes Engine}},
url = {https://cloud.google.com/kubernetes-engine/},
year = 2020,
urldate = {2020-04-13},
}
@electronic{k8s_offering_eks,
author = {{Amazon Web Services, Inc.}},
title = {{Amazon Elastic Kubernetes Service}},
url = "https://aws.amazon.com/eks/",
year = 2020,
urldate = "2020-04-13",
}
@electronic{k8s_offering_ibm,
author = {{IBM}},
title = {{IBM Cloud Kubernetes Service}},
url = "https://www.ibm.com/cloud/container-service/",
year = 2020,
urldate = "2020-04-13",
}
@electronic{k8s_offering_cke,
author = "Strittmatter, Brandon",
title = {{Introducing Containership Kubernetes Engine}},
url = "https://blog.containership.io/introducing-containership-kubernetes-engine",
year = 2018,
month = May,
urldate = "2020-04-13",
}
@electronic{k8s_offering_digioc,
author = {{DigitalOcean, LLC}},
title = {{Kubernetes in minutes}},
url = "https://www.digitalocean.com/products/kubernetes",
year = 2020,
urldate = "2020-05-01",
}
@electronic{k8s_offering_redhat,
author = {{Red Hat, Inc.}},
title = {{Red Hat OpenShift Dedicated}},
url = "https://www.openshift.com/products/dedicated",
year = 2020,
urldate = "2020-05-01",
}
@electronic{k8s_offering_oracle,
author = {{Oracle}},
title = {{Container Engine for Kubernetes}},
url = "https://www.oracle.com/cloud/compute/container-engine-kubernetes.html",
year = 2020,
urldate = "2020-05-01",
}
@electronic{k8s_offering_huawei,
author = {{Huawei Cloud}},
title = {{Cloud Container Engine}},
url = "https://www.huaweicloud.com/en-us/product/cce.html",
year = 2020,
urldate = "2020-05-01",
}
@electronic{k8s_offering_tencent,
author = {{Tencent Cloud}},
title = {{Tencent Kubernetes Engine}},
url = "https://intl.cloud.tencent.com/product/tke",
year = 2020,
urldate = "2020-05-01",
}
@electronic{k8s_offering_pks,
author = {{VMware, Inc.}},
title = {{Pivotal Container Service (PKS)}},
url = "https://network.pivotal.io/products/pivotal-container-service",
year = 2020,
urldate = "2020-04-13",
}
% / k8s offerings table
@electronic{k8s_conformance,
author = {{The Kubernetes Authors}},
title = {{Kubernetes Partners}},
url = "https://kubernetes.io/partners/#conformance",
year = 2020,
urldate = "2020-05-01",
}
% k8s distros table
@electronic{k8s_dist_cisco_ccp,
author = {{Cisco Systems, Inc.}},
title = {{Cisco Container Platform}},
url = "https://www.cisco.com/c/en/us/products/cloud-systems-management/container-platform",
year = 2020,
urldate = "2020-05-01",
}
@electronic{k8s_dist_tanzu,
author = {{VMware, Inc.}},
title = {{Enterprise-ready Kubernetes runtime}},
url = "https://cloud.vmware.com/vmware-enterprise-pks",
year = 2020,
urldate = "2020-04-13",
}
@electronic{k8s_dist_wind_rcp,
author = {{Wind River Systems, Inc.}},
title = {{Wind River Cloud Platform}},
url = "https://www.windriver.com/products/cloud-platform",
year = 2020,
urldate = "2020-05-01",
}
@electronic{k8s_dist_charmed,
author = {{Canonical Ltd.}},
title = {{Multi-cloud Kubernetes on Ubuntu}},
url = "https://ubuntu.com/kubernetes",
year = 2020,
urldate = "2020-05-01",
}
@electronic{k8s_dist_micro,
author = {{Canonical Ltd.}},
title = {{Autonomous low-ops Kubernetes for clusters, workstations, edge and IoT}},
url = "https://microk8s.io",
year = 2020,
urldate = "2020-05-01",
}
@electronic{k8s_dist_minikube,
author = {{The Kubernetes Authors}},
title = {{Installing Kubernetes with Minikube}},
url = "https://kubernetes.io/docs/setup/learning-environment/minikube",
year = 2020,
urldate = "2020-04-26",
}
@electronic{k8s_dist_okd,
author = {{Red Hat}},
title = {{The Community Distribution of Kubernetes that powers Red Hat OpenShift}},
url = "https://www.okd.io",
year = 2020,
urldate = "2020-05-01",
}
@electronic{k8s_dist_minishift,
author = {{Red Hat}},
title = {{Minishift}},
url = "https://www.okd.io/minishift",
year = 2020,
urldate = "2020-05-01",
}
@electronic{k8s_dist_k3s,
author = {{Rancher}},
title = {{Lightweight Kubernetes}},
url = "https://k3s.io",
year = 2020,
urldate = "2020-05-01",
}
@electronic{k8s_dist_kubic,
author = {{openSUSE contributors}},
title = {{openSUSE Kubic}},
url = "https://kubic.opensuse.org",
year = 2020,
urldate = "2020-05-01",
}
@electronic{k8s_dist_metalk8s,
author = {{Scality}},
title = {{Welcome to MetalK8s}},
url = "https://www.zenko.io/metalk8s",
year = 2018,
urldate = "2020-05-01",
}
% / k8s distros table
% subtleties
@electronic{k8s_subtl_virt,
author = {{VMware, Inc}},
title = {{Understanding Full Virtualization, Paravirtualization, and Hardware Assist}},
url = "https://www.vmware.com/techpapers/2007/understanding-full-virtualization-paravirtualizat-1008",
year = 2008,
month = mar,
urldate = "2020-05-01",
}
@electronic{k8s_subtl_conts,
author = "Acreman, Steven",
title = {{Kubernetes Container Runtimes}},
url = "https://kubedex.com/kubernetes-container-runtimes",
year = 2018,
month = dec,
urldate = "2020-05-01",
}
% / subtleties
% k8s versions on public cloud
@electronic{k8s_v_aks,
author = {{Microsoft}},
title = {{Supported Kubernetes versions in Azure Kubernetes Service (AKS)}},
url = "https://docs.microsoft.com/en-us/azure/aks/supported-kubernetes-versions",
year = 2020,
urldate = "2020-05-01",
}
@electronic{k8s_v_eks,
author = {{Amazon Web Services, Inc.}},
title = {{Amazon EKS Kubernetes versions}},
url = "https://docs.aws.amazon.com/eks/latest/userguide/kubernetes-versions",
year = 2020,
urldate = "2020-05-01",
}
% / k8s versions on public cloud
@electronic{k8s_namespaces,
author = {{Kubernetes contributors.}},
title = {{Namespaces}},
url = "https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces",
year = 2020,
urldate = "2020-05-03",
}
@electronic{k8s_crd,
author = {{Kubernetes contributors.}},
title = {{Custom Resources}},
url = "https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources",
year = 2020,
urldate = "2020-05-03",
}
% related work
@electronic{hashicorp_nomad,
author = {{HashiCorp}},
title = {{Nomad product page}},
url = "https://www.hashicorp.com/products/nomad/",
year = 2020,
urldate = "2020-04-18",
}
@electronic{azure_arc,
author = {{Microsoft}},
title = {{Azure Arc}},
url = "https://azure.microsoft.com/en-us/services/azure-arc/",
year = 2020,
urldate = "2020-05-22",
}
@electronic{azure_arc_announce,
author = {{Microsoft}},
title = {{Azure services now run anywhere with new hybrid capabilities: Announcing Azure Arc}},
url = "https://azure.microsoft.com/en-us/blog/azure-services-now-run-anywhere-with-new-hybrid-capabilities-announcing-azure-arc/",
year = 2019,
month = nov,
day = 4,
urldate = "2020-05-22",
}
@electronic{crossplane_overview,
author = {{Crossplane}},
title = {{Crossplane Docs Overview}},
url = "https://crossplane.io/docs/v0.11/",
year = 2020,
urldate = "2020-05-22",
}
@inproceedings{policy_hc_deploy,
author = {H. {Wei} and J. S. {Rodriguez}},
booktitle = {2018 IEEE 6th International Conference on Future Internet of Things and Cloud (FiCloud)},
title = {A Policy Based Application Deployment Method in Hybrid Cloud Environment},
year = {2018},
pages = {93-99},
}
@inproceedings{policy_mc_migr,
author = {K. {Janarthanan} and P. R. L. C. {Peramune} and A. T. {Ranaweera} and T. {Krishnamohan} and L. {Rupasinghe} and K. K. {Sampath} and C. {Liyanapathirana}},
booktitle = {2018 IEEE International Conference on Information and Automation for Sustainability (ICIAfS)},
title = {Policies Based Container Migration Using Cross-Cloud Management Platform},
year = {2018},
pages = {1-6},
}
@inproceedings{rc_prov_policy_failures,
author = {B. {Javadi} and J. {Abawajy} and R. O. {Sinnott}},
booktitle = {4th IEEE International Conference on Cloud Computing Technology and Science Proceedings},
title = {Hybrid Cloud resource provisioning policy in the presence of resource failures},
year = {2012},
pages = {10-17},
}
@inproceedings{policy_driven_hc_mw,
author = {Desair, Tom and Joosen, Wouter and Lagaisse, Bert and Rafique, Ansar and Walraven, Stefan},
title = {Policy-Driven Middleware for Heterogeneous, Hybrid Cloud Platforms},
year = {2013},
isbn = {9781450325530},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
url = {https://doi.org/10.1145/2541583.2541585},
doi = {10.1145/2541583.2541585},
booktitle = {Proceedings of the 12th International Workshop on Adaptive and Reflective Middleware},
articleno = {Article 2},
numpages = {6},
keywords = {dynamic and context-aware adaptation, platform as a service, hybrid cloud},
location = {Beijing, China},
series = {ARM ’13}
}
@inproceedings{rw_ext_decl_mgmt,
author = {O. {Serhiienko} and P. {Gkikopoulos} and J. {Spillner}},
booktitle = {2019 19th IEEE/ACM International Symposium on Cluster, Cloud and Grid Computing (CCGRID)},
title = {Extensible Declarative Management of Cloud Resources across Providers},
year = {2019},
pages = {678-683}
}
@inproceedings{rw_comparison_mcmp,
author = {O. {Serhiienko} and J. {Spillner}},
booktitle = {2018 IEEE International Conference on Cloud Computing Technology and Science (CloudCom)},
title = {Systematic and Recomputable Comparison of Multi-cloud Management Platforms},
year = {2018},
pages = {107-114}
}
@inproceedings{rw_migr_cloud_apps,
author = "Josef Spillner and Manuel Ramírez López",
booktitle = {4th International Workshop on Cloud Adoption and Migration (CloudWays) @ 7th ESOCC},
title = {Transactional Migration of InhomogeneousComposite Cloud Applications},
year = {2018}
}
@electronic{openshifter,
author = "Panagiotis Gkikopoulos",
title = {{Openshifter: Migrating Applications Between Openshift Instances}},
url = "https://blog.zhaw.ch/splab/2019/04/15/openshifter-migrating-applications-between-openshift-instances/",
year = 2019,
month = apr,
day = 15,
urldate = "2020-06-18",
}
% / related work
@book{cn_devops_with_k8s_c1,
author = "Justin Domingus and John Arundel",
title = "Cloud Native DevOps with Kubernetes: 1 Revolution in the Cloud",
publisher = "O'Reilly Media, Inc.",
edition = "First",
year = "2019",
month = feb,
pages = {1-19},
isbn = "978-1-492-04076-7",
}
@book{devops_handbook_1,
author = "John Willis and Patrick Debois and Jez Humble and Gene Kim",
title = "The DevOps Handbook: Part 1",
publisher = "IT Revolution Press",
edition = "First",
year = "2016",
month = nov,
isbn = "978-1942788003",
url = "https://itrevolution.com/book/the-devops-handbook/",
pages = {3-46}
}
@electronic{what_is_devops_atlassian,
author = {{Atlassian}},
title = {{DevOps: Breaking the Development-Operations barrier}},
url = "https://www.atlassian.com/devops",
year = 2020,
urldate = "2020-05-23",
}
@electronic{what_is_devops_microsoft,
author = "Sam Guckenheimer",
title = {{What is DevOps?}},
url = "https://docs.microsoft.com/en-us/azure/devops/learn/what-is-devops",
year = 2018,
month = 4,
day = 1,
urldate = "2020-05-23",
}
@electronic{what_is_devops_splunk,
author = {{Splunk Inc.}},
title = {{What is DevOps?}},
url = "https://www.splunk.com/en_us/data-insider/what-is-devops-and-why-is-it-important",
year = 2020,
urldate = "2020-05-23",
}
@electronic{what_is_devops_aws,
author = {{Amazon Web Services, Inc.}},
title = {{DevOps}},
url = "https://aws.amazon.com/marketplace/solutions/devops",
year = 2020,
urldate = "2020-05-23",
}
@electronic{what_is_devops_gitlab,
author = {{GitLab contributors}},
title = {{DevOps explained}},
url = "https://about.gitlab.com/devops/",
year = 2020,
urldate = "2020-05-23",
}
@article{devops_surveys,
author = {Leite, Leonardo and Rocha, Carla and Kon, Fabio and Milojicic, Dejan and Meirelles, Paulo},
title = {A Survey of DevOps Concepts and Challenges},
year = {2019},
issue_date = {January 2020},
publisher = {Association for Computing Machinery},
address = {New York, NY, USA},
volume = {52},
number = {6},
issn = {0360-0300},
url = {https://doi.org/10.1145/3359981},
doi = {10.1145/3359981},
journal = {ACM Comput. Surv.},
month = nov,
articleno = {Article 127},
numpages = {35},
keywords = {and build process, DevOps, versioning, release process, continuous (delivery, deployment, integration), configuration management}
}
@article{devops_real_world,
title = "Adopting DevOps in the real world: A theory, a model, and a case study",
journal = "Journal of Systems and Software",
volume = "157",
pages = "110384",
year = 2019,
issn = "0164-1212",
doi = "https://doi.org/10.1016/j.jss.2019.07.083",
url = "http://www.sciencedirect.com/science/article/pii/S0164121219301517",
author = "Welder Pinheiro Luz and Gustavo Pinto and Rodrigo Bonifácio",
keywords = "DevOps, Grounded theory, Software development, Software operations, Focus group",
abstract = "DevOps is a set of practices and cultural values that aims to reduce the barriers between development and operations teams. Due to its increasing interest and imprecise definitions, existing research works have tried to characterize DevOps. Nevertheless, little is known about the practitioners’ understandingabout successful paths for DevOps adoption. Therefore, our goal is to detail real scenarios of DevOps adoption, presenting a theory, a model, and a case study. We used classic Grounded Theory to build a theory about 15 scenarios of successful DevOps adoption in companies from different domains and countries. We proposed a model (i.e., a workflow for DevOps adoption) and evaluated it through a case study at a Brazilian Government institution. We used a focus group to collect the company perceptions about DevOps adoption. This paper increments the existing view of DevOps by detailing real scenarios and explaining the role of each category during DevOps adoption. We provide evidence that collaboration is the core DevOps concern, contrasting with an existing wisdom that automation and tooling can be enough to achieve DevOps. Altogether, our results contribute to: generating an adequate understanding of DevOps, from the practitioners’ perspective; and assisting other institutions in the path towards DevOps adoption."
}
@article{devops_multicase,
title = "DevOps in practice: A multiple case study of five companies",
journal = "Information and Software Technology",
volume = "114",
pages = "217 - 230",
year = 2019,
issn = "0950-5849",
doi = "https://doi.org/10.1016/j.infsof.2019.06.010",
url = "http://www.sciencedirect.com/science/article/pii/S0950584917302793",
author = "Lucy Ellen Lwakatare and Terhi Kilamo and Teemu Karvonen and Tanja Sauvola and Ville Heikkilä and Juha Itkonen and Pasi Kuvaja and Tommi Mikkonen and Markku Oivo and Casper Lassenius",
keywords = "DevOps, Continuous deployment, Agile, Operations, Development",
abstract = "Context: DevOps is considered important in the ability to frequently and reliably update a system in operational state. DevOps presumes cross-functional collaboration and automation between software development and operations. DevOps adoption and implementation in companies is non-trivial due to required changes in technical, organisational and cultural aspects. Objectives: This exploratory study presents detailed descriptions of how DevOps is implemented in practice. The context of our empirical investigation is web application and service development in small and medium sized companies. Method: A multiple-case study was conducted in five different development contexts with successful DevOps implementations since its benefits, such as quick releases and minimum deployment errors, were achieved. Data was mainly collected through interviews with 26 practitioners and observations made at the companies. Data was analysed by first coding each case individually using a set of predefined themes and thereafter perform a cross-case synthesis. Results: Our analysis yielded some of the following results: (i) software development team attaining ownership and responsibility to deploy software changes in production is crucial in DevOps. (ii) toolchain usage and support in deployment pipeline activities accelerates the delivery of software changes, bug fixes and handling of production incidents. (ii) the delivery speed to production is affected by context factors, such as manual approvals by the product owner (iii) steep learning curve for new skills is experienced by both software developers and operations staff, who also have to cope with working under pressure. Conclusion: Our findings contributes to the overall understanding of DevOps concept, practices and its perceived impacts, particularly in small and medium sized companies. We discuss two practical implications of the results."
}
@InProceedings{devops_pitfalls,
author = "Caprarelli, Alessandro
and Di Nitto, Elisabetta
and Tamburri, Damian Andrew",
editor = "Bruel, Jean-Michel
and Mazzara, Manuel
and Meyer, Bertrand",
title = "Fallacies and Pitfalls on the Road to DevOps: A Longitudinal Industrial Study",
booktitle = "Software Engineering Aspects of Continuous Development and New Paradigms of Software Production and Deployment",
year = "2020",
publisher = "Springer International Publishing",
address = "Cham",
pages = "200--210",
abstract = "DevOps has come into play to help companies in improving their product delivery. This paper offers an overview of the fallacies and pitfalls faced in this context by engineers and operators in an industrial case-study. We reveal a total of 8 key fallacies and pitfalls that span the organisational structure, technical structures, as well as software process and delivery mechanisms in the target case-study. Practitioners can use these challenges as references for diagnosing their own scenario while planning their own potential DevOps process migration strategy.",
isbn = "978-3-030-39306-9"
}
@InProceedings{devsecops,
author = "Larrucea, Xabier
and Berreteaga, Alberto
and Santamaria, Izaskun",
editor = "Walker, Alastair
and O'Connor, Rory V.
and Messnarz, Richard",
title = "Dealing with Security in a Real DevOps Environment",
booktitle = "Systems, Software and Services Process Improvement",
year = "2019",
publisher = "Springer International Publishing",
address = "Cham",
pages = "453--464",
abstract = "Security is a hot topic in several domains especially in critical infrastructures such as the national health systems. Security practices, methods and tools enhance the resulting final products and services offered to citizens. There is no consensus on how security measures must be included within the DevOps pipeline. This paper provides a DevOps approach for managing security measures along the DevOps pipeline. This approach is based on source code analysis at the integration phase, and it is an initial step for injecting security along the DevOps process. This approach has been developed for a real scenario related to the health sector.",
isbn = "978-3-030-28005-5"
}
@electronic{testops,
author = {{Keysight Technologies}},
title = {{The TestOps Manifesto}},
url = "https://www.keysight.com/ch/de/assets/7018-06546/white-papers/5992-3771.pdf",
year = 2019,
month = mar,
day = 19,
urldate = "2020-05-24",
}
@electronic{winops,
author = {{WinOps}},
title = {{WinOps}},
url = "https://www.winops.org/",
year = 2020,
urldate = "2020-05-24",
}
@electronic{archops,
author = {{Smarchy}},
title = {{ArchOps: Extending the DevOps Loop}},
url = "https://smarchy.com/blog/f/archops-part-ii-extending-the-devops-loop",
year = 2019,
month = aug,
day = 29,
urldate = "2020-05-24",
}
@electronic{dataops,
author = {{DataKitchen, Inc.}},
title = {{The DataOps Manifesto}},
url = "https://www.dataopsmanifesto.org/",
year = 2019,
urldate = "2020-05-24",
}
@electronic{aiops,
author = {{Micro Focus}},
title = {{What is AIOps?}},
url = "https://www.microfocus.com/en-us/what-is/aiops",
year = 2020,
urldate = "2020-05-24",
}
@electronic{noops,
author = "Jordan Bach",
title = {{Is NoOps the End of DevOps? Think Again}},
url = "https://www.appdynamics.com/blog/engineering/is-noops-the-end-of-devops-think-again/",
year = 2017,
month = apr,
day = 11,
urldate = "2020-05-24",
}
@electronic{bizdevops,
author = "Ben Putano",
title = {{A Quick Guide to BizDevOps}},
url = "https://stackify.com/bizdevops-guide/",
year = 2017,
month = nov,
day = 17,
urldate = "2020-05-24",
}
@book{sre_google,
author = "Betsy Beyer and Chris Jones and Niall Richard Murphy and Jennifer Petoff",
title = "Site Reliability Engineering: How Google Runs Production Systems",
publisher = "O'Reilly Media Inc.",
edition = "First",
year = "2016",
month = mar,
day = 21,
url = "https://landing.google.com/sre/sre-book/chapters/introduction/",
isbn = "978-1491929124",
pages = {3-12},
}
@electronic{projects_overrun,
author = "Michael Bloch and Sven Blumberg and Jürgen Laartz",
title = {{Delivering large-scale IT projects on time, on budget, and on value}},
url = "https://www.mckinsey.com/business-functions/mckinsey-digital/our-insights/delivering-large-scale-it-projects-on-time-on-budget-and-on-value",
year = 2012,
month = oct,
day = 1,
urldate = "2020-05-26",
}
@techreport{state_of_devops_19,
author = "Nicole Forsgren and Dustin Smith and Jez Humble and Jessie Frazelle",
title = "State of DevOps 2019",
institution = "DORA",
year = "2019",
url = "https://cloud.google.com/blog/products/devops-sre/the-2019-accelerate-state-of-devops-elite-performance-productivity-and-scaling",
}
@electronic{four_key_metrics,
author = {{ThoughtWorks, Inc.}},
title = {{Four key metrics}},
url = "https://www.thoughtworks.com/radar/techniques/four-key-metrics",
year = 2019,
month = apr,
urldate = "2020-05-26",
}
@electronic{gartner_outage_cost,
author = "Andrew Lerner",
title = {{Four key metrics}},
url = "https://blogs.gartner.com/andrew-lerner/2014/07/16/the-cost-of-downtime/",
year = 2014,
month = jul,
day = 16,
urldate = "2020-05-26",
}
@electronic{itic_outage_cost,
author = {{ITIC}},
title = {{Hourly Downtime Tops 300K for 81 percent of Firms}},
url = "https://itic-corp.com/blog/2017/05/hourly-downtime-tops-300k-for-81-of-firms-33-of-enterprises-say-downtime-costs-1m/",
year = 2017,
month = may,
day = 18,
urldate = "2020-05-26",
}
@electronic{azure_out_may_19,
author = "Liam Tung",
title = {{Azure global outage: Our DNS update mangled domain records, says Microsoft}},
url = "https://www.zdnet.com/article/azure-global-outage-our-dns-update-mangled-domain-records-says-microsoft/",
year = 2019,
month = may,
day = 3,
urldate = "2020-05-28",
}
@electronic{azure_out_nov_18,
author = {{Computer Business Review}},
title = {{Redis Overload to Blame for 17-Hour Azure MFA Login Crisis}},
url = "https://www.cbronline.com/news/azure-mfa-redis",
year = 2018,
month = nov,
day = 20,
urldate = "2020-05-28",
}
@electronic{azure_out_jan_19,
author = {{Computer Business Review}},
title = {{Azure Storage, Virtual Machines, API Apps Drop Offline in the South UK}},
url = "https://www.cbronline.com/news/azure-uk-outage",
year = 2019,
month = jan,
day = 10,
urldate = "2020-05-28",
}
@electronic{azure_out_sept_18,
author = "Yevgeniy Sverdlik",
title = {{Azure Outage Proves the Hard Way that Availability Zones are a Good Idea}},
url = "https://www.datacenterknowledge.com/microsoft/azure-outage-proves-hard-way-availability-zones-are-good-idea",
year = 2018,
month = sep,
day = 12,
urldate = "2020-05-28",
}
@electronic{kind_k8s_in_docker,
author = {{The Kubernetes Authors}},
title = {{Kubernetes IN Docker - local clusters for testing Kubernetes}},
url = "https://kind.sigs.k8s.io/",
year = 2020,
month = 4,
day = 30,
urldate = "2020-05-31",
}
@electronic{mininet,
author = {{Mininet Team}},
title = {{An Instant Virtual Network on your Laptop}},