-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1120 lines (753 loc) · 21.5 KB
/
index.html
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>
<head>
<title>Vox Pupuli - Die Community hinter Puppet - Tim Meusel</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style type="text/css">
@font-face {
font-family: 'Yanone Kaffeesatz';
font-style: normal;
font-weight: 400;
src: local('Yanone Kaffeesatz Regular'), local('YanoneKaffeesatz-Regular'), url(YDAoLskQQ5MOAgvHUQCcLbvy90DtE_Pg_qiF9bHvTzw.ttf) format('truetype');
}
body {
font-family: 'Droid Serif';
}
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: 400;
margin-bottom: 0;
}
.remark-slide-content h1 { font-size: 3em; }
.remark-slide-content h2 { font-size: 2em; }
.remark-slide-content h3 { font-size: 1.6em; }
.footnote {
position: absolute;
bottom: 3em;
}
li p { line-height: 1.25em; }
.red { color: #fa0000; }
.large { font-size: 2em; }
a, a > code {
color: rgb(249, 38, 114);
text-decoration: none;
}
code {
-moz-border-radius: 5px;
-web-border-radius: 5px;
background: #e7e8e2;
border-radius: 5px;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
.remark-code-line-highlighted { background-color: #373832; }
.pull-left {
float: left;
width: 47%;
}
.pull-right {
float: right;
width: 47%;
}
.pull-right ~ p {
clear: both;
}
#slideshow .slide .content code {
font-size: 0.8em;
}
#slideshow .slide .content pre code {
font-size: 0.9em;
padding: 15px;
}
.inverse {
background: #272822;
color: #777872;
text-shadow: 0 0 20px #333;
}
.inverse h1, .inverse h2 {
color: #f3f3f3;
line-height: 0.8em;
}
/* Slide-specific styling */
#slide-inverse .footnote {
bottom: 12px;
left: 20px;
}
#slide-how .slides {
font-size: 0.9em;
position: absolute;
top: 151px;
right: 140px;
}
#slide-how .slides h3 {
margin-top: 0.2em;
}
#slide-how .slides .first, #slide-how .slides .second {
padding: 1px 20px;
height: 90px;
width: 120px;
-moz-box-shadow: 0 0 10px #777;
-webkit-box-shadow: 0 0 10px #777;
box-shadow: 0 0 10px #777;
}
#slide-how .slides .first {
background: #fff;
position: absolute;
top: 20%;
left: 20%;
z-index: 1;
}
#slide-how .slides .second {
position: relative;
background: #fff;
z-index: 0;
}
/* Two-column layout */
.puppetlogo img {
width: 95%;
}
.left-column {
color: #777;
width: 20%;
height: 92%;
float: left;
}
.left-column h2:last-of-type, .left-column h3:last-child {
color: #000;
}
.right-column {
width: 75%;
float: right;
padding-top: 1em;
}
.right-column .something img {
width: 100%;
height: 550px;
}
.right-column .something2 img {
width: 44%;
}
.right-column .nowidth img {
width: auto;
}
.right-column-center {
width: 75%;
float: right;
padding-top: 1em;
text-align: center;
}
.right-column img {
width: 100%;
}
@page {
size: 1024px 786px;
margin: 0;
}
@media print {
.remark-slide-scaler {
width: 100% !important;
height: 100% !important;
transform: scale(1) !important;
top: 0 !important;
left: 0 !important;
size: 1920px 1080px;
}
}
</style>
</head>
<body>
<textarea id="source">
class: center, middle, inverse
# Vox Pupuli - Die Community hinter Puppet
## OSAD 2019 Edition
???
Hi. Mein Name ist Tim und ich möchte euch heute etwas über Vox Pupuli erzählen
---
background-image: url(blue-skies.jpg)
background-size: cover
## $ whoami
* Tim 'bastelfreak' Meusel
* DevOps Engineer at GoDaddy EMEA
* Puppet Contributor since 2012
* Merging stuff on Vox Pupuli since 2015
* Vox Pupuli PMC member
???
*
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
###What?
]
.right-column[
* Maintain many many Puppet modules
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
???
* Wir verwalten fast so viele Puppet module wie die Firma Puppet
* This leads to some challenges, which I want to discuss today
* 88 module während PuppetConf Oktober 2017, 92 im Januar 2018. 117 Oktober 2019
* Puppet Inc hat 169 Oktober 2019
---
background-image: url(blue-skies.jpg)
background-size: cover
count: false
.left-column[
## Vox Pupuli
### What?
]
.right-column[
* Maintain many many Puppet modules
* Be helpful and polite to each other
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
???
* 24/7 ist jemand im IRC
* Wir haben einen Code of Conduct
* Jeder ist zu jedem freundlich. Der kampf gegen verfrickelte manuelle infrastruktur verbindet uns
---
background-image: url(blue-skies.jpg)
background-size: cover
count: false
.left-column[
## Vox Pupuli
### What?
]
.right-column[
* Maintain many many Puppet modules
* Be helpful and polite to each other
* Be open-minded to people and technology
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
???
* People get easily access to our repos
* we encourage users to contribute
* We're always happy to play with new software (automation scripts, IRC bots...) or adopt new modules
---
background-image: url(blue-skies.jpg)
background-size: cover
count: false
.left-column[
## Vox Pupuli
### What?
]
.right-column[
* Maintain many many Puppet modules
* Be helpful and polite to each other
* Be open-minded to people and technology
* Provide a home for orphaned Puppet modules
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
???
* as a user, it's an awful experience to find a module for your usecase, and notice afterwards that it is dead
* We want to avoid that as a collective of module developers
---
background-image: url(blue-skies.jpg)
background-size: cover
count: false
.left-column[
## Vox Pupuli
### What?
]
.right-column[
* Maintain many many Puppet modules
* Be helpful and polite to each other
* Be open-minded to people and technology
* Provide a home for orphaned Puppet modules
* Unite lonely module and tooling authors to a collective
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
???
* Developing alone sucks
* There is a hard pressure on a single person, if your module gets famous
* Sometimes you want to go on vacation, switch jobs, lose interest in developing
---
background-image: url(blue-skies.jpg)
background-size: cover
count: false
.left-column[
## Vox Pupuli
### What?
]
.right-column[
* Maintain many many Puppet modules
* Be helpful and polite to each other
* Be open-minded to people and technology
* Provide a home for orphaned Puppet modules
* Unite lonely module and tooling authors to a collective
* Ensure continued development for our code
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### What?
### Who?
]
.right-column[
* Currently 142 people with merge permissions
* We were 113 in February 2018
* We were 107 in October 2017
* We were 80 in November 2016
* Just a few people work for Puppet Inc.
* Most of the contributors participate in their free time
* Normal administrators that have to deal with puppet at work
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
???
* we're independent from Puppet Inc.
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### What?
### Who?
]
.right-column[
## Science!
.nowidth[
![imagefoo](contributors1.svg)
]
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
???
* Someone sad in the past, a good talk always contains scientific charts
* Currently 142 people with merge permissions
* We were 80 in November 2016
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### What?
### Who?
]
.right-column[
* Many git newbies
* Rebasing a feature branch against upstream master is hard
* Many newcomers to test frameworks
* Dealing with rspec/rubocop/beaker is hard as well
* Many administrators of legacy infrastructures
* Stuff older than Puppet 5 without proper hiera5/datatype support
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
???
* Many contributors are new to git and github
* Many never wrote tests
* we don't have to teach them writing good puppet code, but all the related tooling
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### What?
### Who?
### Why?
]
.right-column[
* Maintaining a module on your own is hard
* Changing best practices, vacations, losing interest
* Proper testing of a module requires a lot of stuff from the ruby ecosystem
* Ruby ecosystem and related tools are changing too fast for a single person
* Everything has to work on multiple Ruby/Puppet versions
* Rubocop
* Rubocop
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
???
* Who tried to fix rubocop warnings in a module and couldn't fix all?
* rubocop is listed twice because it's twice the pain
* Shout out to hailee/HAIL9000 who fixed maaaaaaaany rubocop errors in the mongodb module for many days
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### What?
### Who?
### Why?
### How?
]
.right-column[
## modulesync
* We are managing 117 puppet modules and (178 git repos)
* modulesync was developed by Puppet Inc, moved to Vox Pupuli
* It takes a config file + templates, throws it into every modules git repo
* Automatically creates GitHub Pull Requests (with labels \o/)
* Everybody can start it
* Every of our Collaborators can approve/merge it
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
???
* amount of modules grows
* Keeping generic files like Gemfile/Rakefile in sync is pain, if done by hand
* modulesync saves us sooo much time
* modulesync is similar to `pdk sync`
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### What?
### Who?
### Why?
### How?
]
.right-column[
## [travis-ci.org](https://travis-ci.org/voxpupuli)
![Right-aligned image](travis.png)
* Free CI platform
* Puppet Inc. sponsors us up to 20 concurrent travis slots
* rpsec-puppet on common Puppet*Ruby versions
* release modules to the forge
* beaker acceptance tests
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
???
* 20 Slots mit Puppet geshared
* Thanks to David Schmitt for organizing this
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### What?
### Who?
### Why?
### How?
]
.right-column[
## Release task
* Gem called voxpupuli-release
* provides rake tasks to create a git tag + update the version of a module
* Also pushes the artifact to [forge.puppet.com](https://forge.puppet.com/puppet)
* New: Git Tags are required to have a GPG signature
* Upcoming: Also create a github release
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
???
* everybody can start it, each collaborator can approve it
* We encourage users to contribute by providing easy to use tools
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### What?
### Who?
### Why?
### How?
]
.right-column[
## Tooling
* https://github.com/underscorgan/community_management
* Open Issues and PRs sorted in different ways
* https://voxpupuli-open-prs.herokuapp.com/
* Also open PRs
* https://github.com/voxpupuli/thevoxfox
* IRC bot, allows us to merge stuff + trigger modulesync (soon, maybe)
* https://github.com/bastelfreak/contributorstats
* count contributions
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### What?
### Who?
### Why?
### How?
]
.right-column[
## Tooling
* Label open issues and PRs
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
---
background-image: url(blue-skies.jpg)
background-size: cover
count: false
.left-column[
## Vox Pupuli
### What?
### Who?
### Why?
### How?
]
.right-column[
## Tooling
* Label open issues and PRs
* Ping contributors to rebase their PR
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
---
background-image: url(blue-skies.jpg)
background-size: cover
count: false
.left-column[
## Vox Pupuli
### What?
### Who?
### Why?
### How?
]
.right-column[
## Tooling
* Label open issues and PRs
* Ping contributors to rebase their PR
* Ping contributors to check the failed CI jobs
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
---
background-image: url(blue-skies.jpg)
background-size: cover
count: false
.left-column[
## Vox Pupuli
### What?
### Who?
### Why?
### How?
]
.right-column[
## Tooling
* Label open issues and PRs
* Ping contributors to rebase their PR
* Ping contributors to check the failed CI jobs
* Yak Shaving: update metadata.json / run modulesync
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
---
background-image: url(blue-skies.jpg)
background-size: cover
count: false
.left-column[
## Vox Pupuli
### What?
### Who?
### Why?
### How?
]
.right-column[
## Tooling
* Label open issues and PRs
* Ping contributors to rebase their PR
* Ping contributors to check the failed CI jobs
* Yak Shaving: update metadata.json / run modulesync
* We now have a tool for that \o/
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### What?
### Who?
### Why?
### How?
]
.right-column[
## Tooling
* Ruby on Rails application at [voxpupu.li](http://voxpupu.li)
* Kudos to [Robert Müller](https://twitter.com/Was1NicerDude) for his work!
* Gets push notifications from GitHub for all events
* New pull request / Issue
* Activity in a PR / new merge conflicts
* Interacts with the GitHub API based on the events
* Generates a list of tasks for manual jobs
* In active development / beta
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### What?
### Who?
### Why?
### How?
]
.right-column[
## Tooling
![Right-aligned image](bot_label.png)
![Right-aligned image](bot_comment.png)
Sourecode at [github.com/voxpupuli/vox-pupuli-tasks](https://github.com/voxpupuli/vox-pupuli-tasks#vox-pupuli-tasks---the-webapp-for-community-management)
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### What?
### Who?
### Why?
### How?
]
.right-column[
## Docs
* Review Guidelines: https://voxpupuli.org/docs/#reviewing-a-module
* puppet-strings generated mardown docs in more and more modules, for example
* puppet-selinux
* puppet-autofs
* puppet-mumble
* puppet-cassandra
* puppet-rabbitmq
* puppet-ferm
* puppet-rsyslog
* puppet-borg
* puppet-corosync
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
???
* We now have a list of things that we check during a review! This allows us to get consistent code style and a better quality. Those docs are so so so important!
* We got 21 modules with puppet-strings!
* we provide it as REFERENCE.md in the repo which is embedded into the forge
* does anybody want to have html docs at voxpupuli.org/$modulename? (would be possible)
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
###PMC
]
.right-column[
* We elected a third Project Management Committee in 2019!
* PMC enforces [CoC](https://voxpupuli.org/coc/)
* Brings Vox Pupuli into the Software Freedom Conservancy + works on funding
* PMC guidelines are created by the community https://tinyurl.com/voxpupuli-governance-md
* Current members:
* Tim 'bastelfreak' Meusel (reelected)
* David 'dhollinger' Hollinger (reelected)
* Alex 'afisher' Fisher (reelected)
* Lee 'friedbob' Lowder
* Nate 'natemccurdy' McCurdy
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### PMC
### Collaborators
]
.right-column[
* Review pull requests
* Explain why we don't support ruby187 anymore
* New: Explain why we don't support Puppet 3 and Puppet 4 anymore
* Help with git
* Trigger the automated release process
* New: Use our awesome Rails app to identify important tasks / automate as much as possible with it
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### Daily Business
]
.right-column[
.something2[
![image](candy.jpg)
]
]
.footnote[[@bastelsblog](https://twitter.com/bastelsblog) for [@voxpupuliorg](https://twitter.com/voxpupuliorg)]
???
some explanation: bastelfreak noticed in the Archlinux community that people are happy, if you send them sweets
We tried this in the Puppet community as well. Puppet Inc. received 15pounds of sweets for all their encouragement for the community.
You all keep contributing and bastelfreak will send you sweets as well!
CERN people liked this so much and they use so many of our modules that they send out christmas giftcards to us
---
background-image: url(blue-skies.jpg)
background-size: cover
.left-column[
## Vox Pupuli
### Daily Business
### Broken Stuff
]
.right-column[
* Vox Pupuli is the place to be if something is broken
* puppetlabs-stdlib
* puppetlabs-stdlib again