forked from kubernetes/community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sigs.yaml
2776 lines (2731 loc) · 113 KB
/
sigs.yaml
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
sigs:
- dir: sig-api-machinery
name: API Machinery
mission_statement: >
Covers all aspects of API server, API registration and discovery, generic API
CRUD semantics, admission control, encoding/decoding, conversion, defaulting,
persistence layer (etcd), OpenAPI, CustomResourceDefinition, garbage collection,
and client libraries.
charter_link: charter.md
label: api-machinery
leadership:
chairs:
- github: deads2k
name: David Eads
company: Red Hat
- github: lavalamp
name: Daniel Smith
company: Google
meetings:
- description: Kubebuilder and Controller Runtime Meeting
day: Wednesday
time: "10:00"
tz: PT (Pacific Time)
frequency: monthly - second Wednesday every month
archive_url: https://docs.google.com/document/d/1Ih-2cgg1bUrLwLVTB9tADlPcVdgnuMNBGbUl4D-0TIk/edit?usp=sharing
- description: Regular SIG Meeting
day: Wednesday
time: "11:00"
tz: PT (Pacific Time)
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://goo.gl/0lbiM9
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP21oW3hbLyjjj4XhrwKxH2R
contact:
slack: sig-api-machinery
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-api-machinery
teams:
- name: sig-api-machinery-api-reviews
description: API Changes and Reviews (API Machinery APIs, NOT all APIs)
- name: sig-api-machinery-bugs
description: Bug Triage and Troubleshooting
- name: sig-api-machinery-feature-requests
description: Feature Requests
- name: sig-api-machinery-misc
description: General Discussion
- name: sig-api-machinery-pr-reviews
description: PR Reviews
- name: sig-api-machinery-proposals
description: Design Proposals
- name: sig-api-machinery-test-failures
description: Test Failures and Triage
subprojects:
- name: component-base
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/legacyflag/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/component-base/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/component-base/OWNERS
- name: control-plane-features
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/kube-storage-version-migrator/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/garbagecollector/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/namespace/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/quota/OWNERS
- name: idl-schema-client-pipeline
owners:
- https://raw.githubusercontent.com/kubernetes-client/gen/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/structured-merge-diff/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/code-generator/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/gengo/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kube-openapi/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/code-generator/OWNERS
- name: kubernetes-clients
owners:
- https://raw.githubusercontent.com/kubernetes-client/csharp/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-client/go-base/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-client/go/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-client/haskell/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-client/java/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-client/javascript/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-client/perl/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-client/python-base/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-client/ruby/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-incubator/client-python/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/client-go/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/client-go/OWNERS
- name: server-api-aggregation
owners:
- https://raw.githubusercontent.com/kubernetes/kube-aggregator/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/kube-aggregator/OWNERS
- name: server-binaries
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/cloud-controller-manager/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/controller-manager/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/kube-apiserver/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/kube-controller-manager/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubeapiserver/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/master/OWNERS
- name: server-crd
owners:
- https://raw.githubusercontent.com/kubernetes/apiextensions-apiserver/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/apiextensions-apiserver/OWNERS
- name: server-frameworks
owners:
- https://raw.githubusercontent.com/kubernetes/apiserver/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/apiserver/OWNERS
- name: server-sdk
contact:
mailing_list: https://groups.google.com/forum/#!forum/kubebuilder
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/apiserver-builder-alpha/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/controller-runtime/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/controller-tools/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/kubebuilder-declarative-pattern/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/kubebuilder/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/sample-apiserver/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/sample-controller/OWNERS
- https://raw.githubusercontent.com/kubernetes/sample-apiserver/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/sample-controller/master/OWNERS
- name: universal-machinery
owners:
- https://raw.githubusercontent.com/kubernetes/apimachinery/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/apimachinery/OWNERS
- name: yaml
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/yaml/master/OWNERS
- dir: sig-apps
name: Apps
mission_statement: >
Covers deploying and operating applications in Kubernetes. We focus on the developer
and devops experience of running applications in Kubernetes. We discuss how to
define and run apps in Kubernetes, demo relevant tools and projects, and discuss
areas of friction that can lead to suggesting improvements or feature requests.
charter_link: charter.md
label: apps
leadership:
chairs:
- github: janetkuo
name: Janet Kuo
company: Google
- github: kow3ns
name: Kenneth Owens
company: Google
- github: mattfarina
name: Matt Farina
company: Samsung SDS
- github: prydonius
name: Adnan Abdulhussein
company: VMware
meetings:
- description: Regular SIG Meeting
day: Monday
time: "9:00"
tz: PT (Pacific Time)
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1LZLBGW2wRDwAfdBNHJjFfk9CFoyZPcIYGWU7R1PQ3ng/edit#
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP2LMq7vznITnpd2Fk1YIZF3
contact:
slack: sig-apps
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-apps
teams:
- name: sig-apps-api-reviews
description: API Changes and Reviews
- name: sig-apps-bugs
description: Bug Triage and Troubleshooting
- name: sig-apps-feature-requests
description: Feature Requests
- name: sig-apps-misc
description: General Discussion
- name: sig-apps-pr-reviews
description: PR Reviews
- name: sig-apps-proposals
description: Design Proposals
- name: sig-apps-test-failures
description: Test Failures and Triage
subprojects:
- name: application
description: Application metadata descriptor CRD
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/application/master/OWNERS
- name: examples
owners:
- https://raw.githubusercontent.com/kubernetes/examples/master/OWNERS
- name: execution-hook
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/execution-hook/master/OWNERS
- name: kompose
contact:
slack: kompose
owners:
- https://raw.githubusercontent.com/kubernetes/kompose/master/OWNERS
- name: workloads-api
description: The core workloads API, which is composed of the CronJob, DaemonSet,
Deployment, Job, ReplicaSet, ReplicationController, and StatefulSet kinds
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/apps/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/batch/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/core/v1/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/extensions/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/cronjob/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/daemon/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/deployment/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/disruption/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/history/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/job/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/replicaset/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/replication/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/statefulset/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/registry/apps/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/registry/batch/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/registry/extensions/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/api/apps/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/api/batch/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/api/core/v1/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/api/extensions/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/test/e2e/apps/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/test/integration/daemonset/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/test/integration/deployment/OWNERS
- dir: sig-architecture
name: Architecture
mission_statement: >
The Architecture SIG maintains and evolves the design principles of Kubernetes,
and provides a consistent body of expertise necessary to ensure architectural
consistency over time.
charter_link: charter.md
label: architecture
leadership:
chairs:
- github: bgrant0607
name: Brian Grant
company: Google
- github: derekwaynecarr
name: Derek Carr
company: Red Hat
- github: dims
name: Davanum Srinivas
company: VMware
- github: jdumars
name: Jaice Singer DuMars
company: Google
- github: mattfarina
name: Matt Farina
company: Samsung SDS
meetings:
- description: Regular SIG Meeting
day: Thursday
time: "19:00"
tz: UTC
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1BlmHq5uPyBUDlppYqAAzslVbAO8hilgjqZUTaNXUhKM/edit
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP2m6198LaLN6YahX7EEac5g
- description: code organization Office Hours
day: Thursday
time: "14:00"
tz: PT (Pacific Time)
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1HtTI0rJEGP_MSf6eO87aCmx_tzpovPAAg7U2Zxwm8FE/edit#
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP03VEluzh0wpSRPzgve8kI5
- description: conformance Office Hours
day: Tuesday
time: "12:00"
tz: PT (Pacific Time)
frequency: weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1W31nXh9RYAb_VaYkwuPLd1hFxuRX3iU0DmaQ4lkCsX8/edit#
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP2m6198LaLN6YahX7EEac5g
contact:
slack: sig-architecture
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-architecture
teams:
- name: sig-architecture-api-reviews
description: API Changes and Reviews
- name: sig-architecture-bugs
description: Bug Triage and Troubleshooting
- name: sig-architecture-feature-requests
description: Feature Requests
- name: sig-architecture-misc-use-only-as-a-last-resort
description: General Discussion
- name: sig-architecture-pr-reviews
description: PR Reviews
- name: sig-architecture-proposals
description: Design Proposals
- name: sig-architecture-test-failures
description: Test Failures and Triage
subprojects:
- name: architecture-and-api-governance
description: '[Described below](#architecture-and-api-governance)'
owners:
- https://raw.githubusercontent.com/kubernetes/api/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/community/master/contributors/design-proposals/architecture/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/api/OWNERS
- name: code-organization
description: '[Described below](#code-organization)'
contact:
slack: k8s-code-organization
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/third_party/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/vendor/OWNERS
- https://raw.githubusercontent.com/kubernetes/utils/master/OWNERS
- name: conformance-definition
description: '[Described below](#conformance-definition)'
contact:
slack: k8s-conformance
teams:
- name: cncf-conformance-wg
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/test/conformance/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/test/conformance/testdata/OWNERS
- dir: sig-auth
name: Auth
mission_statement: >
Covers improvements to Kubernetes authorization, authentication, and cluster security
policy.
"All I want is a secure system where it's easy to do anything I want. Is that
so much to ask?" - [xkcd](https://xkcd.com/2044 "xkcd")
charter_link: charter.md
label: auth
leadership:
chairs:
- github: enj
name: Mo Khan
company: Red Hat
- github: mikedanese
name: Mike Danese
company: Google
- github: tallclair
name: Tim Allclair
company: Google
tech_leads:
- github: deads2k
name: David Eads
company: Red Hat
- github: liggitt
name: Jordan Liggitt
company: Google
- github: mikedanese
name: Mike Danese
company: Google
emeritus_leads:
- github: ericchiang
name: Eric Chiang
company: Red Hat
- github: erictune
name: Eric Tune
company: Google
meetings:
- description: Regular SIG Meeting
day: Wednesday
time: "11:00"
tz: PT (Pacific Time)
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1woLGRoONE3EBVx-wTb4pvp4CI7tmLZ6lS26VTbosLKM/edit#
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP0VMOZ-V7-5AchXTHAQFzJw
contact:
slack: sig-auth
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-auth
teams:
- name: sig-auth-api-reviews
description: API Changes and Reviews
- name: sig-auth-bugs
description: Bug Triage and Troubleshooting
- name: sig-auth-feature-requests
description: Feature Requests
- name: sig-auth-misc
description: General Discussion
- name: sig-auth-pr-reviews
description: PR Reviews
- name: sig-auth-proposals
description: Design Proposals
- name: sig-auth-test-failures
description: Test Failures and Triage
subprojects:
- name: audit-logging
description: |
Kubernetes API support for audit logging.
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/api/auditregistration/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/apiserver/pkg/apis/audit/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/apiserver/pkg/audit/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/apiserver/plugin/pkg/audit/OWNERS
- name: authenticators
description: |
Kubernetes API support for authentication.
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/authentication/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubeapiserver/authenticator/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/registry/authentication/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/plugin/pkg/auth/authenticator/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/api/authentication/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/apiserver/pkg/authentication/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/apiserver/plugin/pkg/authenticator/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/client-go/kubernetes/typed/authentication/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/client-go/listers/authentication/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/client-go/pkg/apis/clientauthentication/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/client-go/plugin/pkg/client/auth/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/client-go/tools/auth/OWNERS
- name: authorizers
description: |
Kubernetes API support for authorization.
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/authorization/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/rbac/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubeapiserver/authorizer/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubectl/cmd/auth/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/registry/authorization/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/registry/rbac/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/plugin/pkg/auth/authorizer/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/api/authorization/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/api/rbac/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/apiserver/pkg/authorization/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/apiserver/plugin/pkg/authorizer/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/client-go/kubernetes/typed/authorization/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/client-go/kubernetes/typed/rbac/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/client-go/listers/authorization/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/client-go/listers/rbac/OWNERS
- name: certificates
description: |
Certificates APIs and client infrastructure to support PKI.
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/certificates/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/certificates/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/registry/certificates/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/apiserver/pkg/authentication/request/x509/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/client-go/util/cert/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/client-go/util/certificate/OWNERS
- name: encryption-at-rest
description: |
API storage support for storing data encrypted at rest in etcd.
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/OWNERS
- name: multi-tenancy
description: |
Proposals and prototypes for introducing tenant model to enable multi-tenant cluster
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/multi-tenancy/master/OWNERS
- name: node-identity-and-isolation
description: |
Node identity management (co-owned with sig-lifecycle), and authorization restrictions for isolating workloads on separate nodes (co-owned with sig-node).
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/certificates/approver/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubelet/certificate/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/plugin/pkg/admission/noderestriction/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/plugin/pkg/auth/authorizer/node/OWNERS
- name: policy-management
description: |
API validation and policies enforced during admission, such as PodSecurityPolicy. Excludes run-time policies like NetworkPolicy and Seccomp.
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/imagepolicy/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/policy/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/registry/policy/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/security/podsecuritypolicy/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/plugin/pkg/admission/imagepolicy/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/plugin/pkg/admission/security/podsecuritypolicy/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/api/imagepolicy/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/api/policy/OWNERS
- name: service-accounts
description: |
Infrastructure implementing Kubernetes service account based workload identity.
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/serviceaccount/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubelet/token/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/serviceaccount/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/plugin/pkg/admission/serviceaccount/OWNERS
- dir: sig-autoscaling
name: Autoscaling
mission_statement: >
Covers development and maintenance of components for automated scaling in Kubernetes.
This includes automated vertical and horizontal pod autoscaling, initial resource
estimation, cluster-proportional system component autoscaling, and autoscaling
of Kubernetes clusters themselves.
charter_link: charter.md
label: autoscaling
leadership:
chairs:
- github: mwielgus
name: Marcin Wielgus
company: Google
meetings:
- description: Regular SIG Meeting
day: Monday
time: "14:00"
tz: UTC
frequency: biweekly/triweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1RvhQAEIrVLHbyNnuaT99-6u9ZUMp7BfkPupT2LAZK7w/edit
contact:
slack: sig-autoscaling
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-autoscaling
teams:
- name: sig-autoscaling-api-reviews
description: API Changes and Reviews
- name: sig-autoscaling-bugs
description: Bug Triage and Troubleshooting
- name: sig-autoscaling-feature-requests
description: Feature Requests
- name: sig-autoscaling-misc
description: General Discussion
- name: sig-autoscaling-pr-reviews
description: PR Reviews
- name: sig-autoscaling-proposals
description: Design Proposals
- name: sig-autoscaling-test-failures
description: Test Failures and Triage
subprojects:
- name: addon-resizer
owners:
- https://raw.githubusercontent.com/kubernetes/autoscaler/master/addon-resizer/OWNERS
- name: cluster-autoscaler
owners:
- https://raw.githubusercontent.com/kubernetes/autoscaler/master/OWNERS
- name: cluster-proportional-autoscaler
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/cluster-proportional-autoscaler/master/OWNERS
- name: cluster-proportional-vertical-autoscaler
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/cluster-proportional-vertical-autoscaler/master/OWNERS
- name: horizontal-pod-autoscaler
owners:
- https://raw.githubusercontent.com/kubernetes/api/master/autoscaling/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/podautoscaler/OWNERS
- name: scale-client
owners:
- https://raw.githubusercontent.com/kubernetes/client-go/master/scale/OWNERS
- name: vertical-pod-autoscaler
owners:
- https://raw.githubusercontent.com/kubernetes/autoscaler/master/OWNERS
- dir: sig-cli
name: CLI
mission_statement: >
Covers kubectl and related tools. We focus on the development and standardization
of the CLI framework and its dependencies, the establishment of conventions for
writing CLI commands, POSIX compliance, and improving the command line tools from
a developer and devops user experience and usability perspective.
charter_link: charter.md
label: cli
leadership:
chairs:
- github: seans3
name: Sean Sullivan
company: Google
- github: soltysh
name: Maciej Szulik
company: Red Hat
tech_leads:
- github: pwittrock
name: Phillip Wittrock
company: Google
- github: soltysh
name: Maciej Szulik
company: Red Hat
emeritus_leads:
- github: AdoHe
name: Tony Ado
company: Alibaba
- github: fabianofranz
name: Fabiano Franz
company: Red Hat
meetings:
- description: Regular SIG Meeting
day: Wednesday
time: "09:00"
tz: PT (Pacific Time)
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1r0YElcXt6G5mOWxwZiXgGu_X6he3F--wKwg-9UBc29I/edit?usp=sharing
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP28HaTzSlFe6RJVxpFmbUvF
contact:
slack: sig-cli
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cli
teams:
- name: sig-cli-api-reviews
description: API Changes and Reviews
- name: sig-cli-bugs
description: Bug Triage and Troubleshooting
- name: sig-cli-feature-requests
description: Feature Requests
- name: sig-cli-maintainers
description: CLI Maintainers
- name: sig-cli-misc
description: General Discussion
- name: sig-cli-pr-reviews
description: PR Reviews
- name: sig-cli-proposals
description: Design Proposals
- name: sig-cli-test-failures
description: Test Failures and Triage
subprojects:
- name: cli-experimental
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/cli-experimental/master/OWNERS
- name: cli-sdk
owners:
- https://raw.githubusercontent.com/kubernetes/cli-runtime/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/cli-runtime/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/sample-cli-plugin/OWNERS
- https://raw.githubusercontent.com/kubernetes/sample-cli-plugin/master/OWNERS
- name: cli-utils
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/cli-utils/master/OWNERS
- name: krew
description: Plugin manager for kubectl.
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/krew/master/OWNERS
- name: krew-index
description: Centralized plugin index for krew.
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/krew-index/master/OWNERS
- name: kubectl
owners:
- https://raw.githubusercontent.com/kubernetes/kubectl/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubectl/OWNERS
- name: kustomize
contact:
slack: kustomize
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/OWNERS
- dir: sig-cloud-provider
name: Cloud Provider
mission_statement: >
Ensures that the Kubernetes ecosystem is evolving in a way that is neutral to
all (public and private) cloud providers. It will be responsible for establishing
standards and requirements that must be met by all providers to ensure optimal
integration with Kubernetes.
charter_link: CHARTER.md
label: cloud-provider
leadership:
chairs:
- github: andrewsykim
name: Andrew Sy Kim
company: VMware
- github: cheftako
name: Walter Fender
company: Google
- github: hogepodge
name: Chris Hoge
company: OpenStack Foundation
emeritus_leads:
- github: jagosan
name: Jago Macleod
company: Google
meetings:
- description: Regular SIG Meeting
day: Wednesday
time: "1:00"
tz: PT (Pacific Time)
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1OZE-ub-v6B8y-GuaWejL-vU_f9jsjBbrim4LtTfxssw/edit#heading=h.w7i4ksrweimp
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP3dXLcYbRKCbpPCN-8CDFAB
contact:
slack: sig-cloud-provider
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cloud-provider
teams:
- name: sig-cloud-provider-api-reviews
description: API Changes and Reviews
- name: sig-cloud-provider-bugs
description: Bug Triage and Troubleshooting
- name: sig-cloud-provider-feature-requests
description: Feature Requests
- name: sig-cloud-provider-maintainers
description: Cloud Providers Maintainers
- name: sig-cloud-provider-pr-reviews
description: PR Reviews
- name: sig-cloud-provider-proposals
description: Design Proposals
- name: sig-cloud-provider-test-failures
description: Test Failures and Triage
- name: sig-cloud-providers-misc
description: General Discussion
subprojects:
- name: cloud-provider-extraction-migration
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/apiserver-network-proxy/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/community/master/sig-cloud-provider/cloud-provider-extraction-migration/OWNERS
- https://raw.githubusercontent.com/kubernetes/legacy-cloud-providers/master/OWNERS
meetings:
- description: Weekly Sync removing the in-tree cloud providers led by @cheftako
and @mcrute
day: Thursday
time: "13:30"
tz: PT (Pacific Time)
frequency: weekly
url: https://docs.google.com/document/d/1KLsGGzNXQbsPeELCeF_q-f0h0CEGSe20xiwvcR2NlYM/edit
- name: kubernetes-cloud-provider
owners:
- https://raw.githubusercontent.com/kubernetes/cloud-provider-sample/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/cloud-provider/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/cloud-controller-manager/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/cloudprovider/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/cloud/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/cloud-provider/OWNERS
- name: provider-alibaba-cloud
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/alibaba-cloud-csi-driver/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/cloud-provider-alibaba-cloud/master/OWNERS
- name: provider-aws
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/aws-ebs-csi-driver/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/aws-efs-csi-driver/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/aws-encryption-provider/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/aws-fsx-csi-driver/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/aws-iam-authenticator/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/cloud-provider-aws/master/OWNERS
meetings:
- description: Regular AWS Subproject Meeting
day: Friday
time: "9:00"
tz: PT (Pacific Time)
frequency: 'biweekly 2019 start date: Jan. 11th'
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1-i0xQidlXnFEP9fXHWkBxqySkXwJnrGJP9OGyP2_P14/edit
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP29DzPOBBaJi-SO3AQ_b4HC
- name: provider-azure
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/azurefile-csi-driver/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/cluster-api-provider-azure/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/cloud-provider-azure/master/OWNERS
meetings:
- description: Regular Azure Subproject Meeting
day: Wednesday
time: "16:00"
tz: UTC
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1SpxvmOgHDhnA72Z0lbhBffrfe9inQxZkU9xqlafOW9k/edit
recordings_url: https://www.youtube.com/watch?v=yQLeUKi_dwg&list=PL69nYSiGNLP2JNdHwB8GxRs2mikK7zyc4
- name: provider-gcp
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/gcp-filestore-csi-driver/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/cloud-provider-gcp/master/OWNERS
meetings:
- description: Regular GCP Subproject Meeting
day: Thursday
time: "16:00"
tz: UTC
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1mtmwZ4oVSSWhbEw8Lfzvc7ig84qxUpdK6uHyJp8rSGU/edit
- name: provider-ibmcloud
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/cluster-api-provider-ibmcloud/master/OWNERS
meetings:
- description: Regular IBM Subproject Meeting
day: Wednesday
time: "14:00"
tz: EST
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1qd_LTu5GFaxUhSWTHigowHt3XwjJVf1L57kupj8lnwg/edit
- name: provider-openstack
owners:
- https://raw.githubusercontent.com/kubernetes/cloud-provider-openstack/master/OWNERS
meetings:
- description: Regular OpenStack Subproject Meeting
day: Wednesday
time: "08:00"
tz: PT (Pacific Time)
frequency: biweekly starting Wednesday March 20, 2019
url: https://docs.google.com/document/d/1bW3j4hFN4D8rv2LFv-DybB3gcE5ISAaOO_OpvDCgrGg/edit
archive_url: https://docs.google.com/document/d/15UwgLbEyZyXXxVtsThcSuPiJru4CuqU9p3ttZSfTaY4/edit
recordings_url: https://www.youtube.com/watch?v=iCfUx7ilh0E&list=PL69nYSiGNLP20iTSChQ_i2QQmTBl3M7ax
- name: provider-vsphere
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/vsphere-csi-driver/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/cloud-provider-vsphere/master/OWNERS
meetings:
- description: Cloud Provider vSphere monthly syncup
day: Wednesday
time: "09:00"
tz: PT (Pacific Time)
frequency: monthly - first Wednesday every month
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1B0NmmKVh8Ea5hnNsbUsJC7ZyNCsq_6NXl5hRdcHlJgY/edit?usp=sharing
recordings_url: https://www.youtube.com/playlist?list=PLutJyDdkKQIpOT4bOfuO3MEMHvU1tRqyR
- dir: sig-cluster-lifecycle
name: Cluster Lifecycle
mission_statement: >
The Cluster Lifecycle SIG examines how we should change Kubernetes to make it
easier to manage and operate with a focus on cluster deployment and upgrades.
charter_link: charter.md
label: cluster-lifecycle
leadership:
chairs:
- github: justinsb
name: Justin Santa Barbara
company: Google
- github: luxas
name: Lucas Käldström
company: Luxas Labs (occasionally contracting for Weaveworks)
- github: timothysc
name: Timothy St. Clair
company: VMware
emeritus_leads:
- github: roberthbailey
name: Robert Bailey
company: Google
meetings:
- description: Cluster API (AWS implementation) office hours
day: Monday
time: "10:00"
tz: PT (Pacific Time)
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1ojR0jooQaHEuz3gGW6DxcZlsws9ZX7jHPC8walm1G3A/edit
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP29D0nYgAGWt1ZFqS9Z7lw4
- description: Cluster API Provider Implementers' office hours (EMEA)
day: Wednesday
time: "15:00"
tz: CEST (Central European Summer Time)
frequency: weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1IZ2-AZhe4r3CYiJuttyciS7bGZTTx4iMppcA8_Pr3xE/edit
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP29D0nYgAGWt1ZFqS9Z7lw4
- description: Cluster API Provider Implementers' office hours (US West Coast)
day: Tuesday
time: "12:00"
tz: PT (Pacific Time)
frequency: weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1IZ2-AZhe4r3CYiJuttyciS7bGZTTx4iMppcA8_Pr3xE/edit
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP29D0nYgAGWt1ZFqS9Z7lw4
- description: Cluster API office hours
day: Wednesday
time: "10:00"
tz: PT (Pacific Time)
frequency: weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1Ys-DOR5UsgbMEeciuG0HOgDQc8kZsaWIWJeKJ1-UfbY/edit
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP29D0nYgAGWt1ZFqS9Z7lw4
- description: Cluster Addons meeting
day: Tuesday
time: "09:00"
tz: PT (Pacific Time)
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/10_tl_SXcFGb-2109QpcFVrdrfnVEuQ05MBrXtasB0vk/edit
- description: Kubespray Office Hours
day: Wednesday
time: "08:00"
tz: PT (Pacific Time)
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1oDI1rTwla393k6nEMkqz0RU9rUl3J1hov0kQfNcl-4o/edit
- description: Regular SIG Meeting
day: Tuesday
time: "09:00"
tz: PT (Pacific Time)
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1Gmc7LyCIL_148a9Tft7pdhdee0NBHdOfHS1SAF0duI4/edit
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP29D0nYgAGWt1ZFqS9Z7lw4
- description: Regular SIG Meeting in China
day: Tuesday
time: "20:00"
tz: Beijing
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://shimo.im/docs/YcoaYlvRmIYcrwnd
- description: etcdadm Office Hours
day: Monday
time: "09:00"
tz: PT (Pacific Time)
frequency: biweekly
url: https://docs.google.com/document/d/1b_J0oBvi9lL0gsPgTOrCw1Zlx3e7BYEuXnB3d2S15pA/edit#
- description: kops Office Hours
day: Friday
time: "09:00"
tz: PT (Pacific Time)
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/12QkyL0FkNbWPcLFxxRGSPt_tNPBHbmni3YLY-lHny7E/edit
- description: kubeadm Office Hours
day: Wednesday
time: "09:00"
tz: PT (Pacific Time)
frequency: weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/130_kiXjG7graFNSnIAgtMS1G8zPDwpkshgfRYS0nggo/edit
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP29D0nYgAGWt1ZFqS9Z7lw4
- description: minikube Office Hours
day: Monday
time: "11:00"
tz: PT (Pacific Time)
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1jhfmL1gsgN39uCEgz5pW9tnIotFgHhxq2yfMK3KYE4w/edit
contact:
slack: sig-cluster-lifecycle
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-cluster-lifecycle
teams:
- name: sig-cluster-lifecycle
description: Notify group
- name: sig-cluster-lifecycle-pr-reviews
description: PR Reviews
subprojects:
- name: bootkube
contact:
slack: bootkube
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/bootkube/master/OWNERS
- name: cluster-addons
contact:
slack: cluster-addons
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/addon-operators/master/OWNERS
- name: cluster-api
contact:
slack: cluster-api
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/cluster-api-bootstrap-provider-kubeadm/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/cluster-api/master/OWNERS
- name: cluster-api-provider-aws
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/cluster-api-provider-aws/master/OWNERS
- name: cluster-api-provider-digitalocean
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/cluster-api-provider-digitalocean/master/OWNERS
- name: cluster-api-provider-docker
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/cluster-api-provider-docker/master/OWNERS
- name: cluster-api-provider-gcp
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/cluster-api-provider-gcp/master/OWNERS
- name: cluster-api-provider-openstack
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/cluster-api-provider-openstack/master/OWNERS
- name: cluster-api-provider-vsphere
contact:
slack: cluster-api-vsphere
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/cluster-api-provider-vsphere/master/OWNERS
meetings:
- description: Cluster API vSphere syncup meeting
day: Wednesday
time: "13:00"
tz: PT (Pacific Time)
frequency: bi-weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1jQrQiOW75uWraPk4b_LWtCTHwT7EZwrWWwMdxeWOEvk/edit?usp=sharing
recordings_url: https://www.youtube.com/playlist?list=PLutJyDdkKQIovV-AONxMa2cyv-_5LAYiu
- name: etcdadm
contact:
slack: etcdadm
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/etcdadm/master/OWNERS
- name: image-builder
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/image-builder/master/OWNERS
- name: kops
owners:
- https://raw.githubusercontent.com/kubernetes/kops/master/OWNERS
- name: kube-aws
contact:
slack: kube-aws
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/kube-aws/master/OWNERS
- name: kube-deploy
contact:
slack: kube-deploy
owners:
- https://raw.githubusercontent.com/kubernetes/kube-deploy/master/OWNERS
- name: kube-up
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cluster/OWNERS
- name: kubeadm
contact:
slack: kubeadm
owners:
- https://raw.githubusercontent.com/kubernetes/cluster-bootstrap/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubeadm/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/kubeadm/OWNERS
- https://raw.githubusercontent.com/kubernetes/system-validators/master/OWNERS
- name: kubernetes-anywhere
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes-anywhere/master/OWNERS
- name: kubespray
contact:
slack: kubespray
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/kubespray/master/OWNERS
- name: minikube
contact: