-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2310 lines (956 loc) · 64.5 KB
/
index.html
File metadata and controls
2310 lines (956 loc) · 64.5 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
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta name="generator" content="Hugo 0.49.2" />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Devops Gathering 2020">
<meta name="description" content="The DevOps Gathering is an international community conference located in Germany. | March 09 - 11, 2020 | All about Docker, Kubernetes, Microservices, Clouds and everything else regarding DevOps.">
<title>Devops Gathering 2020 | March 09 - 11, 2020 in Bochum</title>
<!-- Favicon -->
<link rel="shortcut icon" href="https://devops-gathering.io/favicon.ico">
<link rel="apple-touch-icon" sizes="152x152" href="https://devops-gathering.io/apple-touch-icon.png">
<link rel="icon" type="image/png" href="https://devops-gathering.io/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="https://devops-gathering.io/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="https://devops-gathering.io/manifest.json">
<link rel="mask-icon" href="https://devops-gathering.io/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
<!-- Foundation Min CSS -->
<link rel="stylesheet" href="/css/foundation.min.css" type="text/css">
<!-- Custom Fonts -->
<link rel="stylesheet" href="/fonts/ubuntu/ubuntu.css" type="text/css">
<link rel="stylesheet" href="/font-awesome/css/font-awesome.min.css" type="text/css">
<!-- Cookie Consent -->
<link rel="stylesheet" type="text/css" href="https://devops-gathering.io/cookieconsent.min.css">
<!-- Plugin CSS -->
<!-- Custom CSS -->
<link rel="stylesheet" href="/css/main.css" type="text/css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href='https://css.tito.io/v1.1' />
<script src='https://js.tito.io/v1' async></script>
<meta property="og:title" content="Devops Gathering 2020 | March 09 - 11, 2020 in Bochum" />
<meta property="og:description" content=" The DevOps Gathering is an international community conference located in Germany. | March 09 - 11, 2020 | All about Docker, Kubernetes, Microservices, Clouds and everything else regarding DevOps. " />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://devops-gathering.io/" />
<meta property="og:image" content="https://devops-gathering.io/meta-image.png" />
<meta property="og:updated_time" content="2019-08-30 00:00:00 +0000 UTC"/>
<meta property="article:publisher" content="https://bee42.com/" />
<meta property="article:modified_time" content="2019-08-30 00:00:00 +0000 UTC" />
<meta property="article:section" content="" />
<meta itemprop="name" content="Devops Gathering 2020 | March 09 - 11, 2020 in Bochum">
<meta itemprop="description" content="">
<meta itemprop="keywords" content="" />
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Devops Gathering 2020 | March 09 - 11, 2020 in Bochum"/>
<meta name="twitter:description" content=" The DevOps Gathering is an international community conference located in Germany. | March 09 - 11, 2020 | All about Docker, Kubernetes, Microservices, Clouds and everything else regarding DevOps. "/>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-T3ZTW7P');</script>
</head>
<body>
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-T3ZTW7P"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<nav class="navigation-container">
<div class="inner-content">
<a class="branding" href="https://devops-gathering.io"><img src="/img/logo-dogr-header.svg"/></a>
<ul class="social-media">
<li><a href="https://twitter.com/devopsgathering"><i class="fa fa-twitter fa-2x" aria-hidden="true"></i></a></li>
<li><a href="https://www.youtube.com/channel/UCQZcFFlmKBBAhvSupNTm2tw"><i class="fa fa-youtube fa-2x" aria-hidden="true"></i></a></li>
<li class="bee"><a href="https://communicode.de/" target="_blank"><img style="padding: 5px;" src="/img/cc-fulltext.svg"></a> </li>
</ul>
<ul class="navigation">
<li><a href="/#talks">Talks</a></li>
<li><a href="/#workshops">Workshops</a></li>
<li><a href="/tickets">Tickets</a></li>
<li><a href="/sponsors">Sponsors</a>
<ul>
<li><a href="/2019/sponsors/"><i class="fa fa-angle-right" aria-hidden="true"></i> Sponsors 2019</a></li>
<li><a href="/2018/sponsors/"><i class="fa fa-angle-right" aria-hidden="true"></i> Sponsors 2018</a></li>
<li><a href="/2017/sponsors/"><i class="fa fa-angle-right" aria-hidden="true"></i> Sponsors 2017</a></li>
<li><a href="/sponsoring/"><i class="fa fa-angle-right" aria-hidden="true"></i> Become a sponsor</a></li>
</ul>
</li>
<li><a href="/media-and-photos">Media</a></li>
<li><a href="javascript:void(0)">Infos</a>
<ul>
<li><a href="/venue/"><i class="fa fa-angle-right" aria-hidden="true"></i> Venue</a></li>
<li><a href="/accommodations/"><i class="fa fa-angle-right" aria-hidden="true"></i> Accommodations</a></li>
<li><a href="/code-of-conduct/"><i class="fa fa-angle-right" aria-hidden="true"></i> Code of Conduct</a></li>
<li><a href="/general-terms-and-conditions/"><i class="fa fa-angle-right" aria-hidden="true"></i> Terms and Conditions</a></li>
<li><a href="/contact/"><i class="fa fa-angle-right" aria-hidden="true"></i>Contact</a></li>
</ul>
</li>
<li><a href="javascript:void(0)">Previous Events</a>
<ul>
<li><a href="/2019/"><i class="fa fa-angle-right" aria-hidden="true"></i> 2019</a></li>
<li><a href="/2018/"><i class="fa fa-angle-right" aria-hidden="true"></i> 2018</a></li>
<li><a href="/2017/"><i class="fa fa-angle-right" aria-hidden="true"></i> 2017</a></li>
</ul>
</li>
</ul>
<button class="burger"><i class="fa fa-bars " aria-hidden="true"></i></button>
</div>
</nav>
<!-- HEADER -->
<header>
<div class="header-content" id="top">
<div class="header-content-inner">
<p>All about DevOps and Container Technologies</p>
<h3>communicode AG proudly presents</h3>
<h1>DevOps Gathering 2020</h1>
<h2>March 09 - 11, 2020</h2>
<h3>G Data Campus Bochum</h3>
</div>
</div>
<div class="overlay"></div>
</header>
<div class="container">
<!-- ABOUT -->
<section class="bg-primary" id="about">
<div class="content-box about">
<div class="inner-content">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h2 class="section-heading">About DevOps Gathering</h2>
<p>The DevOps Gathering is an international conference located in Bochum - surrounded by the
metropolitan area of the Ruhr Valley. This melting pot of past times industrial revolutions is
nowadays a hot spot for Germany’s IT industry - a perfect place to discuss the next big evolution of
our industry and working culture. Let’s discuss the hot topics inside the DevOps community and start
talking about CNCF-Projects, Container Ecosystems, Kubernetes, Microservices, Serverless, Clouds and
everything else regarding the DevOps culture to automate all.</p>
<p>The bee42 solutions gmbh has been hosting this conference striving for high-quality content and
providing a platform for experienced international speakers at the G Data Campus in the heart of
Bochum – Germany.</p>
<p>We are happy to announce that the communicode AG will host the conference from now on. Peter Rossbach
and his team joined communicode in order to synergize their expertises. The DevOps Gathering will
take place as you are used to and we still will stand by your side for any kind of information.</p>
<img src="/img/thomas-peter.png" alt="thomas & peter" class="round"
style="max-width: 40%; padding-bottom: 1em;">
<p>
<i>
<q>DevOps Gathering is very close to my heart and I am pleased that together with communicode we
can welcome the DevOps community back to Bochum. As speaker and moderator I am looking
forward to meeting you again in Bochum. Greets, Peter
</q>
</i>
</p>
<div class="clear"></div>
<div class="clearfix"></div>
</div>
</div>
</section>
<!-- ABOUT -->
<section class="bg-primary" id="slides-videos">
<div class="content-box" style="background: #333">
<div class="inner-content">
<div class="col-lg-8 col-lg-offset-2 text-center">
<h3 style="color: #fff">Watch our Recap of the DevOps Gathering 2020 Event</h3>
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/C6wJT-8ZUvs" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<br>
<h3 style="color: #fff">Slides of the talks are available <a href="https://speakerdeck.com/devopsgatheringio">here</a></h3>
<div class="clear"></div>
<div class="clearfix"></div>
</div>
</div>
</section>
<!-- ABOUT -->
<section class="bg-primary" id="slide-video-announce">
<div class="content-box" style="background: #333; padding-top: 2em;">
<div class="inner-content">
<div class="col-lg-8 col-lg-offset-2 text-center" style="color: white; font-weight: bold;">
<br>
<h2>DevOps Gathering Reloaded</h2>
<h3>May 06th, 2020</h2>
<p>We could win Rainer over to show his talk “Serverless Azure Functions in the Azure Cloud” to you
in a free webinar, organized by communicode. </p>
<h3>Watch the lecture by Rainer Stropek as a webinar <a
href="https://www.gotostage.com/channel/a5cdcbe98f704bde844819f3973d6858/recording/41e5eb5d502b4342a125a355ec2ce7e9/watch?source=CHANNEL">here</a>.
</h3>
<div class="clearfix"></div>
</div>
</div>
</section>
<div class="content-box speaker" id="speakers">
<h2>Speakers</h2>
<div class="inner-content">
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/burkhard-noltensmeier/">
<img src="/img/speakers/burkhard-noltensmeier.jpg" class="round" />
<span>Burkhard Noltensmeier</span>
<span> teuto.net Network Services GmbH</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/christian-wansart/">
<img src="/img/speakers/christian-wansart.jpg" class="round" />
<span>Christian Wansart</span>
<span> OPEN KNOWLEDGE GmbH</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/constantin-weisser/">
<img src="/img/speakers/constantin-weisser.jpg" class="round" />
<span>Constantin Weisser</span>
<span> Novatec Consulting GmbH</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/dirk-weil/">
<img src="/img/speakers/dirk-weil.jpg" class="round" />
<span>Dirk Weil</span>
<span> Gedoplan GmbH</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/ema-rimeike/">
<img src="/img/speakers/default.png" class="round" />
<span>Ema Rimeike</span>
<span> Secure Code Warrior Ltd</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/eyal-liebermann/">
<img src="/img/speakers/eyal-liebermann.jpg" class="round" />
<span>Eyal Liebermann</span>
<span> SAP</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/florian-kuckelkorn/">
<img src="/img/speakers/florian-kuckelkorn.png" class="round" />
<span>Florian Kuckelkorn</span>
<span> G DATA CyberDefense AG</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/halil-cem-gursoy/">
<img src="/img/speakers/halil-cem-gursoy.jpg" class="round" />
<span>Halil-Cem Gürsoy</span>
<span> Opitz Consulting</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/kevin-wittek/">
<img src="/img/speakers/kevin-wittek.jpg" class="round" />
<span>Kevin Wittek</span>
<span> Head of Blockchain Research at ifis</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/konstantin-diener/">
<img src="/img/speakers/konstantin-diener.jpg" class="round" />
<span>Konstantin Diener</span>
<span> cosee</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/maggie-otoole/">
<img src="/img/speakers/maggie-otoole.jpg" class="round" />
<span>Maggie O’Toole</span>
<span> AWS</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/manuel-zapf/">
<img src="/img/speakers/manuel-zapf.png" class="round" />
<span>Manuel Zapf</span>
<span> Containous</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/marcel-mueller/">
<img src="/img/speakers/marcel-mueller.jpg" class="round" />
<span>Marcel Müller</span>
<span> GiantSwarm</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/mario-kleinsasser/">
<img src="/img/speakers/mario-kleinsasser.jpg" class="round" />
<span>Mario Kleinsasser</span>
<span> STRABAG SE</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/martin-valdes-de-leon/">
<img src="/img/speakers/martin-valdes-de-leon.jpg" class="round" />
<span>Martin Valdes de Leon</span>
<span> AWS</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/matthias-simonis/">
<img src="/img/speakers/matthias-simonis.jpg" class="round" />
<span>Matthias Simonis</span>
<span> G DATA CyberDefense AG</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/matthias-wessendorf/">
<img src="/img/speakers/matthias-wessendorf.jpg" class="round" />
<span>Matthias Wessendorf</span>
<span> RedHat Ltd.</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/niclas-mietz/">
<img src="/img/speakers/niclas-mietz.png" class="round" />
<span>Niclas Mietz</span>
<span> communicode AG</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/nico-meisenzahl/">
<img src="/img/speakers/nico-meisenzahl.png" class="round" />
<span>Nico Meisenzahl</span>
<span> white duck GmbH</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/nils-bokermann/">
<img src="/img/speakers/default.png" class="round" />
<span>Nils Bokermann</span>
<span> Freelancer</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/peter-rossbach/">
<img src="/img/speakers/peter-rossbach.png" class="round" />
<span>Peter Rossbach</span>
<span> communicode AG</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/philipp-krenn/">
<img src="/img/speakers/philipp-krenn.jpg" class="round" />
<span>Philipp Krenn</span>
<span> elastic</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/rainer-stropek/">
<img src="/img/speakers/rainer-stropek.png" class="round" />
<span>Rainer Stropek</span>
<span> software architects / IT Vision</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/robert-douglass/">
<img src="/img/speakers/robert-douglass.jpg" class="round" />
<span>Robert Douglass</span>
<span> platform.sh</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/roland-huss/">
<img src="/img/speakers/roland-huss.png" class="round" />
<span>Roland Huss</span>
<span> RedHat Ltd.</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/stefan-hausotte/">
<img src="/img/speakers/stefan-hausotte.jpg" class="round" />
<span>Stefan Hausotte</span>
<span> G DATA CyberDefense AG</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/stephan-mueller/">
<img src="/img/speakers/stephan-mueller.png" class="round" />
<span>Stephan Müller</span>
<span> OPEN KNOWLEDGE GmbH</span>
</a>
</div>
<div class="logo small-12 medium-3 large-3 columns">
<a target="_blank" class="big" href="/speakers/thomas-peitz/">
<img src="/img/speakers/thomas-peitz.jpg" class="round" />
<span>Thomas Peitz</span>
<span> inVision AG</span>
</a>
</div>
</div>
</div>
<div class="content-box sponsoring">
<h2>Support this amazing community - Become a sponsor! </h2>
<p>Interested in sponsoring this great community conference and supporting the DevOps community?<br> Look at our sponsors from <a href="/2019/#sponsoring">last year</a>.<br>Here are the sponsoring opportunities and information for 2020: <a href="/sponsoring">sponsoring packages</a>.</p>
</div>
<div class="content-box program" id="workshops">
<div class="inner-content">
<h2>Workshops on Monday (March 9, 2020)</h2>
<p>This Workshops are an perfect fit for Cloud Native Engineers and SRE's. Attendees have the chance to learn from some exciting Cloud Native enablers, Docker Community members and international experts. <br> The concept of the workshop is to leave room for experiments. The goal of the workshops are to interact with one another and learn as much as possible from our speakers and experts.</p>
<h3 style="text-align: center; margin-top: 1em; color: #fff">Full-Day Workshops</h3>
<ul class="accordion">
<li class="acc-container">
<div class="acc-title">
<h3><span class="time">09:30 - 17:30</span><span style="color: red;">Cancelled: </span>Introduction to Go
<span class="speaker">Speaker: Rainer Stropek </span></h3>
</div>
<i class="fa fa-caret-down" aria-hidden="true"></i>
<div class="acc-content">
<p><span>Abstract: </span><br>You will learn about the syntax, tools, and important libraries for using Go in a Microservice- and DevOps-context. Of course, building Docker images with Go services will be an important part in the workshop. Bring your laptop as this will be a workshop with many samples and only a few slides.</p>
<p><a href="/workshops/introduction-to-go/" class="more">Read more</a></p>
</div>
</li>
</ul>
<h3 style="text-align: center; margin-top: 1em; color: #fff">Half-Day Workshops</h3>
<ul class="accordion">
<li class="acc-container">
<div class="acc-title">
<h3><span class="time">09:00 - 12:30</span>Going Serverless
<span class="speaker">Speaker: Thomas Peitz </span></h3>
</div>
<i class="fa fa-caret-down" aria-hidden="true"></i>
<div class="acc-content">
<p><span>Abstract: </span><br>Everybody’s hyped about Serverless, but what is it exactly about and what does it mean to develop a real application with it?</p>
<p><a href="/workshops/going-serverless/" class="more">Read more</a></p>
</div>
</li>
<li class="acc-container">
<div class="acc-title">
<h3><span class="time">09:00 - 12:30</span>Kubernetes 101
<span class="speaker">Speaker: Niclas Mietz </span></h3>
</div>
<i class="fa fa-caret-down" aria-hidden="true"></i>
<div class="acc-content">
<p><span>Abstract: </span><br>This Workshop will explain the basic concepts of Kubernetes. Questions like How can I expose my Kubernetes App to the world or How can I run my Container in Kubernetes ? Also it will deliver a Higher Overview over Kubernetes Architecture and the basic components.</p>
<p><a href="/workshops/kubernetes-101/" class="more">Read more</a></p>
</div>
</li>
<li class="acc-container">
<div class="acc-title">
<h3><span class="time">09:00 - 12:30</span>Ansible: Testing with Molecule
<span class="speaker">Speaker: Florian Kuckelkorn and Matthias Simonis </span></h3>
</div>
<i class="fa fa-caret-down" aria-hidden="true"></i>
<div class="acc-content">
<p><span>Abstract: </span><br>This workshop gives an introduction on test-driven development of ansible roles with molecule ( <a href="https://molecule.readthedocs.io/en/stable">https://molecule.readthedocs.io/en/stable</a> )
Molecule provides support for testing with multiple instances, operating systems and distributions, virtualization providers, test frameworks and testing scenarios.
This workshop is hands-on and is designed for molecule beginner, basic ansible knowledge about playbook and role development is required.</p>
<p><a href="/workshops/ansible-testing-with-molecule/" class="more">Read more</a></p>
</div>
</li>
<li class="acc-container">
<div class="acc-title">
<h3><span class="time">09:00 - 12:30</span>Introduction to Kubernetes Operators
<span class="speaker">Speaker: Marcel Müller </span></h3>
</div>
<i class="fa fa-caret-down" aria-hidden="true"></i>
<div class="acc-content">
<p><span>Abstract: </span><br>Operators are a powerful tool to unlock automation and management potential in clusters. In this workshop I will first introduce and explain some core concepts of Kubernetes operators such as the controller pattern, eventual consistency, custom resources and status management in Kubernetes.</p>
<p><a href="/workshops/introduction-to-kubernetes-operators/" class="more">Read more</a></p>
</div>
</li>
<li class="acc-container-break">
<div class="acc-title">
<h3><span class="time break">12:30 - 13:30</span>Lunch Break</h3>
</div>
</li>
<li class="acc-container">
<div class="acc-title">
<h3><span class="time">13:30 - 17:00</span>Amazon EKS Workshop
<span class="speaker">Speaker: Maggie O’Toole and Martin Valdes de Leon </span></h3>
</div>
<i class="fa fa-caret-down" aria-hidden="true"></i>
<div class="acc-content">
<p><span>Abstract: </span><br>Running more than one containerized application in production makes teams look for solutions to quickly deploy and orchestrate containers. One of the most popular options is the open-source project Kubernetes. With the release of the Amazon Elastic Container Service for Kubernetes (EKS), engineering teams now have access to a fully managed Kubernetes control plane and time to focus on building applications.</p>
<p><a href="/workshops/amazon-eks-workshop/" class="more">Read more</a></p>
</div>
</li>
<li class="acc-container">
<div class="acc-title">
<h3><span class="time">13:30 - 17:00</span>How to provide reliable Postgres Database inside of Kubernetes Cluster with a Postgres Operator
<span class="speaker">Speaker: Burkhard Noltensmeier </span></h3>
</div>
<i class="fa fa-caret-down" aria-hidden="true"></i>
<div class="acc-content">
<p><span>Abstract: </span><br>We will show the workings of the Zalando Postgres Operator inside of Kubernetes. We will elaborate on the do and don’t of using the Operator. Practical examples how to control Data Placement and Backup will conclude the Workshop.</p>
<p><a href="/workshops/reliable-postgres-operator/" class="more">Read more</a></p>
</div>
</li>
<li class="acc-container">
<div class="acc-title">
<h3><span class="time">13:30 - 17:00</span>Testing with Containers
<span class="speaker">Speaker: Stephan Müller and Christian Wansart </span></h3>
</div>
<i class="fa fa-caret-down" aria-hidden="true"></i>
<div class="acc-content">
<p><span>Abstract: </span><br>The workshop demonstrates how to set up practical tests for Enterprise projects with Docker Containers and the testcontainers framework</p>
<p><a href="/workshops/testing-with-containers/" class="more">Read more</a></p>
</div>
</li>
</ul>
</div>
</div>
<div class="content-box program" id="talks">
<div class="inner-content">
<h2>Talks on March 10 - 11, 2020</h2>
<p>These talks are a perfect fit for Cloud Native Engineers and SRE's.<br> Attendees obtain interesseting stories from experts with different knowledge areas.<br> The complete list of talks and the timeline we publish very soon!</p>
<h3 style="text-align: center; margin-top: 1em; color: #fff"> Tuesday | March 10, 2020</h3>
<ul class="accordion" style="margin-top: 2em;">
<li class="acc-container-break">
<div class="acc-title">
<h3><span class="time break">08:45 - 09:00</span>Introduction</h3>
</div>
</li>
<li class="acc-container">
<div class="acc-title">
<h3><span class="time">09:00 - 09:45</span>Cloud Native Ecosystem 101
<span class="speaker">Speaker: Peter Rossbach - communicode AG </span></h3>
</div>
<i class="fa fa-caret-down" aria-hidden="true"></i>
<div class="acc-content">
<p><span>Abstract: </span><br>Cloud native computing allows teams to build and manage services using container architectures and stringing them together into applications, without worrying about servers at all. The ecosystem is growing fast and a lot of changes are ahead. The combination of cloud services and kubernetes as a platform are the way to go. This talk give you technical overview of currently available cloud native ecosystem and future of container based systems.</p>
<p><a href="/talks/cloud-native-ecosystem-101/" class="more">Read more</a></p>
</div>
</li>
<li class="acc-container">
<div class="acc-title">
<h3><span class="time">09:45 - 10:30</span>The first decade of DevOps is over!
<span class="speaker">Speaker: Konstantin Diener - cosee </span></h3>
</div>
<i class="fa fa-caret-down" aria-hidden="true"></i>
<div class="acc-content">
<p><span>Abstract: </span><br>The DevOps movement started 2009 at a small conference in Ghent. I’ll take you on a journey through ten years of DevOps and try to show how the topic has evolved since that time. In the beginning DevOps was an experiment to improve the collaboration just between Dev and Ops people. Today DevOps is often seen as tooling, as many tremendous changes in IT happened since then: the rise of container technology, Microservices, Public Cloud Services, Serverless and Infrastructure as Code - just to name a few of them. But DevOps is much more than technology and tooling. Books like ‚The Phoenix Project‘ were an eye opener to the process and people aspects of DevOps. A big set of different collaboration models between Dev and Ops like SRE have been developed. We learned about topics like Continuous Delivery, Observability, ChatOps etc. and how more departments than Dev and Ops will be affected by this new way of delivering digital products.
The talk will end up giving an outlook to the next exciting decade of DevOps…</p>
<p><a href="/talks/the-first-decade-of-devops-is-over/" class="more">Read more</a></p>
</div>
</li>
<li class="acc-container-break">
<div class="acc-title">
<h3><span class="time break">10:30 - 11:00</span>Coffee Break</h3>
</div>
</li>
<li class="acc-container">
<div class="acc-title">
<h3><span class="time">11:00 - 11:45</span>From Containers to Kubernetes Operators
<span class="speaker">Speaker: Philipp Krenn - elastic </span></h3>
</div>
<i class="fa fa-caret-down" aria-hidden="true"></i>
<div class="acc-content">
<p><span>Abstract: </span><br>“Containers are the new ZIP format to distribute software” is a fitting description of today’s development world. However, it is not always that easy and this talk highlights the development of Elastic’s container strategy over time: Docker images, Docker Compose, Helm Charts, and a Kubernetes Operator.</p>
<p><a href="/talks/from-containers-to-kubernetes-operators/" class="more">Read more</a></p>
</div>
</li>
<li class="acc-container">
<div class="acc-title">
<h3><span class="time">11:45 - 12:30</span>Building a Graph User-Interface for Malware-Analysis
<span class="speaker">Speaker: Stefan Hausotte - G DATA CyberDefense AG </span></h3>
</div>
<i class="fa fa-caret-down" aria-hidden="true"></i>
<div class="acc-content">
<p><span>Abstract: </span><br>As a security company, G DATA built a large JanusGraph database with information about different malware threats over the years. This talk shows how we built an interactive graph interface to explore the data using auto-generated GraphQL interfaces and open-source JavaScript libraries for graph rendering.</p>
<p><a href="/talks/building-graph-ui-for-malware-analysis/" class="more">Read more</a></p>
</div>
</li>
<li class="acc-container">
<div class="acc-title">
<h3><span class="time">11:45 - 12:30</span><span style="color: red;">Cancelled: </span>Serverless Azure Functions in the Azure Cloud
<span class="speaker">Speaker: Rainer Stropek - software architects / IT Vision </span></h3>
</div>
<i class="fa fa-caret-down" aria-hidden="true"></i>
<div class="acc-content">
<p><span>Abstract: </span><br>Ten years ago, Azure started with a strong focus on PaaS. No wonder that Serverless has also become super important in Microsoft’s cloud recently. Rainer Stropek has been using Azure since the days of the first technical previews. In this session, Rainer will introduce you to Azure Functions, one of the Serverless offerings in Azure. Instead of speaking about theory, Rainer will walk you through an end-to-end sample and use it to describe the inner workings of Azure Function’s programming model. No slides, just code, a session for Microservice developers who want to know how things work and how they can benefit from Azure in practice.</p>
<p><a href="/talks/serverless-functions-in-azure-cloud/" class="more">Read more</a></p>
</div>
</li>
<li class="acc-container-break">
<div class="acc-title">