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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
|
sigs:
- name: API Machinery
dir: sig-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:
label: api-machinery
leadership:
chairs:
- name: Daniel Smith
company: Google
github: lavalamp
- name: David Eads
company: Red Hat
github: deads2k
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://goo.gl/0lbiM9
recordings_url: https://www.youtube.com/watch?v=Lj1ScbXpnpY&list=PL69nYSiGNLP21oW3hbLyjjj4XhrwKxH2R
- description: Kubebuilder and Controller Runtime Meeting
day: Wednesday
time: "10:00"
tz: "PT (Pacific Time)"
frequency: monthly - second Wednesday every month
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: server-binaries
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/cmd/cloud-controller-manager/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/controller-manager/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubeapiserver/OWNERS # support for binary
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/master/OWNERS # support for binary
- name: control-plane-features
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 # if not us, who?
- https://raw.githubusercontent.com/kubernetes-sigs/kube-storage-version-migrator/master/OWNERS
- name: universal-machinery # i.e., both client and server
owners:
- https://raw.githubusercontent.com/kubernetes/apimachinery/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/apimachinery/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-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-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-sdk
owners:
- https://raw.githubusercontent.com/kubernetes/sample-apiserver/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/sample-apiserver/OWNERS
- https://raw.githubusercontent.com/kubernetes/sample-controller/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/sample-controller/OWNERS
- https://raw.githubusercontent.com/kubernetes-incubator/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/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/kubebuilder-declarative-pattern/master/OWNERS
- name: idl-schema-client-pipeline
owners:
- https://raw.githubusercontent.com/kubernetes/gengo/master/OWNERS # possibly should be totally separate
- https://raw.githubusercontent.com/kubernetes/code-generator/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/code-generator/OWNERS
- https://raw.githubusercontent.com/kubernetes/kube-openapi/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-client/gen/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/structured-merge-diff/master/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/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: yaml
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/yaml/master/OWNERS
- name: component-base
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: Apps
dir: sig-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:
- name: Matt Farina
github: mattfarina
company: Samsung SDS
- name: Adnan Abdulhussein
github: prydonius
company: Bitnami
- name: Kenneth Owens
github: kow3ns
company: Google
meetings:
- description: Regular SIG Meeting
day: Monday
time: "9:00"
tz: "PT (Pacific Time)"
frequency: weekly
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/watch?v=hn23Z-vL_cM&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: examples
owners:
- https://raw.githubusercontent.com/kubernetes/examples/master/OWNERS
- name: 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/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/apis/apps/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/core/v1/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/batch/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/apis/extensions/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/core/v1/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/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
- name: application
description: Application metadata descriptor CRD
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/application/master/OWNERS
- name: Architecture
dir: sig-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:
- name: Brian Grant
github: bgrant0607
company: Google
- name: Jaice Singer DuMars
github: jdumars
company: Google
- name: Matt Farina
github: mattfarina
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
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/community/master/contributors/design-proposals/architecture/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/architecture-tracking/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/api/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/api/OWNERS
- name: conformance-definition
description: "[Described below](#conformance-definition)"
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/test/conformance/testdata/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/test/conformance/OWNERS
- name: code-organization
description: "[Described below](#code-organization)"
owners:
- https://raw.githubusercontent.com/kubernetes/contrib/master/OWNERS # solely to steward moving code _out_ of here to more appropriate places
- https://raw.githubusercontent.com/kubernetes/utils/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/vendor/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/third_party/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/OWNERS
- name: klog
owners:
- https://raw.githubusercontent.com/kubernetes/klog/master/OWNERS
- name: steering
description: Placeholder until sigs.yaml supports committees as first-class groups. These repos are owned by the kubernetes steering committee, which is a wholly separate entity from SIG Architecture
owners:
- https://raw.githubusercontent.com/kubernetes/steering/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-incubator/spartakus/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes-template-project/master/OWNERS
- name: Auth
dir: sig-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:
- name: Mike Danese
github: mikedanese
company: Google
- name: Mo Khan
github: enj
company: Red Hat
- name: Tim Allclair
github: tallclair
company: Google
tech_leads:
- name: David Eads
github: deads2k
company: Red Hat
- name: Jordan Liggitt
github: liggitt
company: Google
- name: Mike Danese
github: mikedanese
company: Google
emeritus_leads:
- name: Eric Chiang
github: ericchiang
company: Red Hat
- name: Eric Tune
github: erictune
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: node-n-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/staging/src/k8s.io/api/imagepolicy/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/api/policy/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/security/podsecuritypolicy/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/registry/policy/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/plugin/pkg/admission/imagepolicy/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/plugin/pkg/admission/security/podsecuritypolicy/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
- name: Autoscaling
dir: sig-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:
- name: Marcin Wielgus
github: mwielgus
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: scale-client
owners:
- https://raw.githubusercontent.com/kubernetes/client-go/master/scale/OWNERS # doesn't exist yet
- name: cluster-autoscaler
owners:
- https://raw.githubusercontent.com/kubernetes/autoscaler/master/OWNERS
- name: vertical-pod-autoscaler
owners:
- https://raw.githubusercontent.com/kubernetes/autoscaler/master/OWNERS
- name: horizontal-pod-autoscaler
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/podautoscaler/OWNERS
- https://raw.githubusercontent.com/kubernetes/api/master/autoscaling/OWNERS
- name: cluster-proportional-vertical-autoscaler
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/cluster-proportional-vertical-autoscaler/master/OWNERS
- name: cluster-proportional-autoscaler
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/cluster-proportional-autoscaler/master/OWNERS
- name: addon-resizer
owners:
- https://raw.githubusercontent.com/kubernetes/autoscaler/master/addon-resizer/OWNERS
- name: AWS
dir: sig-aws
mission_statement: >
Covers maintaining, supporting, and using Kubernetes hosted on AWS Cloud.
charter_link: charter.md
label: aws
leadership:
chairs:
- name: Justin Santa Barbara
github: justinsb
- name: Kris Nova
github: kris-nova
company: VMware
- name: Nishi Davidson
github: d-nishi
company: AWS
meetings:
- description: Regular SIG 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
contact:
slack: sig-aws
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-aws
teams:
- name: sig-aws-misc
description: General Discussion
subprojects:
- name: cloud-provider-aws
owners:
- https://raw.githubusercontent.com/kubernetes/cloud-provider-aws/master/OWNERS
- name: aws-alb-ingress-controller
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/aws-alb-ingress-controller/master/OWNERS
- name: aws-iam-authenticator
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/aws-iam-authenticator/master/OWNERS
- name: aws-encryption-provider
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/aws-encryption-provider/master/OWNERS
- name: aws-ebs-csi-driver
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/aws-ebs-csi-driver/master/OWNERS
- name: Azure
dir: sig-azure
mission_statement: >
A Special Interest Group for building, deploying, maintaining, supporting,
and using Kubernetes on Azure.
charter_link: charter.md
label: azure
leadership:
chairs:
- name: Stephen Augustus
github: justaugustus
company: VMware
- name: Dave Strebel
github: dstrebel
company: Microsoft
tech_leads:
- name: Kal Khenidak
github: khenidak
company: Microsoft
- name: Pengfei Ni
github: feiskyer
company: Microsoft
meetings:
- description: Regular SIG 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
contact:
slack: sig-azure
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-azure
teams:
- name: sig-azure
description: General Discussion
subprojects:
- name: cloud-provider-azure
owners:
- https://raw.githubusercontent.com/kubernetes/cloud-provider-azure/master/OWNERS
- name: cluster-api-provider-azure
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/cluster-api-provider-azure/master/OWNERS
- name: csi-drivers-azure
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/azuredisk-csi-driver/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/azurefile-csi-driver/master/OWNERS
- name: Big Data
dir: sig-big-data
mission_statement: >
Covers deploying and operating big data applications (Spark, Kafka,
Hadoop, Flink, Storm, etc) on Kubernetes. We focus on integrations with
big data applications and architecting the best ways to run them on Kubernetes.
charter_link:
label: big-data
leadership:
chairs:
- name: Anirudh Ramanathan
github: foxish
company: Rockset
- name: Erik Erlandson
github: erikerlandson
company: Red Hat
- name: Yinan Li
github: liyinan926
company: Google
meetings:
- description: Regular SIG Meeting
day: Wednesday
time: "17:00"
tz: "UTC"
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit
recordings_url: https://docs.google.com/document/d/1pnF38NF6N5eM8DlK088XUW85Vms4V2uTsGZvSp8MNIA/edit
contact:
slack: sig-big-data
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-big-data
teams:
- name: sig-big-data-api-reviews
description: API Changes and Reviews
- name: sig-big-data-bugs
description: Bug Triage and Troubleshooting
- name: sig-big-data-feature-requests
description: Feature Requests
- name: sig-big-data-misc
description: General Discussion
- name: sig-big-data-pr-reviews
description: PR Reviews
- name: sig-big-data-proposals
description: Design Proposals
- name: sig-big-data-test-failures
description: Test Failures and Triage
- name: CLI
dir: sig-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:
tech_leads:
- name: Maciej Szulik
github: soltysh
company: Red Hat
- name: Phillip Wittrock
github: pwittrock
company: Google
chairs:
- name: Maciej Szulik
github: soltysh
company: Red Hat
- name: Sean Sullivan
github: seans3
company: Google
emeritus_leads:
- name: Fabiano Franz
github: fabianofranz
company: Red Hat
- name: Tony Ado
github: AdoHe
company: Alibaba
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: kubectl
owners:
- https://raw.githubusercontent.com/kubernetes/kubectl/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubectl/OWNERS
- name: kustomize
owners:
# "owners" entry
- https://raw.githubusercontent.com/kubernetes-sigs/kustomize/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/sample-cli-plugin/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/sample-cli-plugin/OWNERS
- name: Cloud Provider
dir: sig-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:
- name: Andrew Sy Kim
github: andrewsykim
company: VMware
- name: Chris Hoge
github: hogepodge
company: OpenStack Foundation
- name: Jago Macleod
github: jagosan
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-providers-misc
description: General Discussion
- 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
subprojects:
- name: kubernetes-cloud-provider
owners:
- https://raw.githubusercontent.com/kubernetes/cloud-provider/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/cloud-provider-sample/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/cloud-provider/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/cloud-controller-manager/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/cloud/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/cloudprovider/OWNERS
- name: cloud-provider-alibaba-cloud
owners:
- https://raw.githubusercontent.com/kubernetes/cloud-provider-alibaba-cloud/master/OWNERS
- name: cloud-provider-gcp
owners:
- https://raw.githubusercontent.com/kubernetes/cloud-provider-gcp/master/OWNERS
- name: cloud-provider-openstack
owners:
- https://raw.githubusercontent.com/kubernetes/cloud-provider-openstack/master/OWNERS
- name: cloud-provider-vsphere
owners:
- https://raw.githubusercontent.com/kubernetes/cloud-provider-vsphere/master/OWNERS
- name: cloud-provider-extraction-migration
owners:
- https://raw.githubusercontent.com/kubernetes/community/master/sig-cloud-provider/cloud-provider-extraction-migration/OWNERS
meetings:
- description: Weekly Sync removing the in-tree cloud providers led by @cheftako and @andrewsykim
day: Thursday
time: "13:30"
tz: "PT (Pacific Time)"
frequency: weekly
url: https://docs.google.com/document/d/1KLsGGzNXQbsPeELCeF_q-f0h0CEGSe20xiwvcR2NlYM/edit
- name: Cluster Lifecycle
dir: sig-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:
label: cluster-lifecycle
leadership:
chairs:
- name: Robert Bailey
github: roberthbailey
company: Google
- name: Lucas Käldström
github: luxas
company: Luxas Labs (occasionally contracting for Weaveworks)
- name: Timothy St. Clair
github: timothysc
company: VMware
meetings:
- 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: 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: 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/16ils69KImmE94RlmzjWDrkmFZysgB2J4lGnYMRN89WM/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 (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/10dq54Fd-xa6P5Iy3p46VY1YTFqugGMd1PygDIpuRw6c/edit
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP29D0nYgAGWt1ZFqS9Z7lw4
- 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: 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
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
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/bootkube/master/OWNERS
- name: cluster-api
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-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: kops
owners:
- https://raw.githubusercontent.com/kubernetes/kops/master/OWNERS
- name: kube-aws
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/kube-aws/master/OWNERS
- name: 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
owners:
- https://raw.githubusercontent.com/kubernetes/kubeadm/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/kubeadm/OWNERS
- https://raw.githubusercontent.com/kubernetes/cluster-bootstrap/master/OWNERS
- name: kubeadm-dind-cluster
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/kubeadm-dind-cluster/master/OWNERS
- name: kubernetes-anywhere
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes-anywhere/master/OWNERS
- name: kubespray
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/kubespray/master/OWNERS
- name: minikube
owners:
- https://raw.githubusercontent.com/kubernetes/minikube/master/OWNERS
- name: Contributor Experience
dir: sig-contributor-experience
mission_statement: >
Developing and sustaining a healthy community of contributors
is critical to scaling the project and growing the ecosystem.
We need to ensure our contributors are happy and productive,
and that there are not bottlenecks hindering the project in,
for example: feature velocity, community scaling, pull request
latency, and absolute numbers of open pull requests and open
issues.
charter_link: charter.md
label: contributor-experience
leadership:
chairs:
- name: Elsie Phillips
github: Phillels
company: CoreOS
- name: Paris Pittman
github: parispittman
company: Google
tech_leads:
- name: Christoph Blecker
github: cblecker
- name: Nikhita Raghunath
github: nikhita
emeritus_leads:
- name: Garrett Rodrigues
github: grodrigues3
company: Google
meetings:
- description: Regular SIG Meeting
day: Wednesday
time: "9:30"
tz: "PT (Pacific Time)"
frequency: weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1qf-02B7EOrItQgwXFxgqZ5qjW0mtfu5qkYIF1Hl4ZLI/
recordings_url: https://www.youtube.com/watch?v=EMGUdOKwSns&list=PL69nYSiGNLP2x_48wbOPO0vXQgNTm_xxr
contact:
slack: sig-contribex
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-contribex
teams:
- name: sig-contributor-experience-bugs
description: Bug Triage and Troubleshooting
- name: sig-contributor-experience-feature-requests
description: Feature Requests
- name: sig-contributor-experience-misc-use-only-as-a-last-resort
description: General Discussion
- name: sig-contributor-experience-pr-reviews
description: PR Reviews
- name: sig-contributor-experience-proposals
description: Design Proposals
- name: sig-contributor-experience-test-failures
description: Test Failures and Triage
subprojects:
- name: community
owners:
- https://raw.githubusercontent.com/kubernetes/community/master/OWNERS
- name: community-management
owners:
- https://raw.githubusercontent.com/kubernetes/community/master/communication/OWNERS
https://raw.githubusercontent.com/kubernetes/community/master/events/OWNERS
- name: github-management
owners:
- https://raw.githubusercontent.com/kubernetes/community/master/github-management/OWNERS
- https://raw.githubusercontent.com/kubernetes/org/master/OWNERS
- name: contributors-documentation
owners:
- https://raw.githubusercontent.com/kubernetes/community/master/contributors/guide/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/contributor-site/master/OWNERS
meetings:
- description: Non-Code Contributors Meeting
day: Wednesday
time: "11:00"
tz: "PT (Pacific Time)"
frequency: biweekly
url: https://docs.google.com/document/d/1gdFWfkrapQclZ4-z4Lx2JwqKsJjXXUOVoLhBzZiZgSk/edit
- name: devstats
owners:
- https://raw.githubusercontent.com/kubernetes/community/master/sig-contributor-experience/devstats/OWNERS
- name: k8s.io
owners:
- https://raw.githubusercontent.com/kubernetes/k8s.io/master/OWNERS
- name: mentoring
owners:
- https://raw.githubusercontent.com/kubernetes/community/master/mentoring/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/contributor-playground/master/OWNERS
- name: repo-infra
owners:
- https://raw.githubusercontent.com/kubernetes/repo-infra/master/OWNERS
- name: events
owners:
- https://raw.githubusercontent.com/kubernetes/community/master/events/OWNERS
meetings:
- description: Contributor Summit strategy, content and planning
day: Monday
time: "9:00"
tz: "PT (Pacific Time)"
frequency: weekly
- name: Docs
dir: sig-docs
mission_statement: >
Covers documentation, doc processes, and doc publishing for Kubernetes.
charter_link:
label: docs
leadership:
chairs:
- name: Andrew Chen
github: chenopis
company: Google
- name: Zach Corleissen
github: zacharysarah
company: Linux Foundation
- name: Jennifer Rondeau
github: bradamant3
company: VMware
meetings:
- description: Regular SIG Meeting
day: Tuesday
time: "17:30"
tz: "UTC"
frequency: weekly - except fourth Tuesday every month
url: https://docs.google.com/document/d/1zg6By77SGg90EVUrhDIhopjZlSDg2jCebU-Ks9cYx0w/edit
archive_url: https://docs.google.com/document/d/1Ds87eRiNZeXwRBEbFr6Z7ukjbTow5RQcNZLaSvWWQsE/edit
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP3b5hlx0YV7Lo7DtckM84y8
- description: APAC SIG Meeting
day: Wednesday
time: "02:00"
tz: "UTC"
frequency: monthly - fourth Wednesday every month
url: https://docs.google.com/document/d/1zg6By77SGg90EVUrhDIhopjZlSDg2jCebU-Ks9cYx0w/edit
archive_url: https://docs.google.com/document/d/1Ds87eRiNZeXwRBEbFr6Z7ukjbTow5RQcNZLaSvWWQsE/edit
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP3b5hlx0YV7Lo7DtckM84y8
contact:
slack: sig-docs
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-docs
teams:
- name: sig-docs-maintainers
description: Documentation maintainers
- name: sig-docs-pr-reviews
description: Documentation PR reviews
- name: sig-docs-ko-owners
description: Korean localization
- name: sig-docs-ja-owners
description: Japanese localization
- name: sig-docs-zh-owners
description: Chinese localization
subprojects:
- name: reference-docs
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/reference-docs/master/OWNERS
- name: website
owners:
- https://raw.githubusercontent.com/kubernetes/website/master/OWNERS
- name: website-metadata
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/website-metadata/master/OWNERS
- name: GCP
dir: sig-gcp
mission_statement: >
A Special Interest Group for building, deploying, maintaining,
supporting, and using Kubernetes on the Google Cloud Platform.
charter_link:
label: gcp
leadership:
chairs:
- name: Adam Worrall
github: abgworrall
company: Google
meetings:
- description: Regular SIG 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
contact:
slack: sig-gcp
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-gcp
teams:
- name: sig-gcp-api-reviews
description: API Changes and Reviews
- name: sig-gcp-bugs
description: Bug Triage and Troubleshooting
- name: sig-gcp-feature-requests
description: Feature Requests
- name: sig-gcp-misc
description: General Discussion
- name: sig-gcp-pr-reviews
description: PR Reviews
- name: sig-gcp-proposals
description: Design Proposals
- name: sig-gcp-test-failures
description: Test Failures and Triage
subprojects:
- name: gcp-compute-persistent-disk-csi-driver
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver/master/OWNERS
- name: gcp-filestore-csi-driver
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/gcp-filestore-csi-driver/master/OWNERS
- name: IBMCloud
dir: sig-ibmcloud
mission_statement: >
A Special Interest Group (SIG) for building, deploying, maintaining, supporting,
and using Kubernetes on IBM Public and Private Clouds.
charter_link:
label: ibmcloud
leadership:
chairs:
- name: Khalid Ahmed
github: khahmed
company: IBM
- name: Richard Theis
github: rtheis
company: IBM
- name: Sahdev Zala
github: spzala
company: IBM
meetings:
- description: Regular SIG 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
contact:
slack: sig-ibmcloud
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-ibmcloud
teams:
- name: sig-ibmcloud-misc
description: General Discussion
- name: Instrumentation
dir: sig-instrumentation
mission_statement: >
Covers best practices for cluster observability through metrics, logging, and events across all
Kubernetes components and development of relevant components such as Heapster and kube-state-metrics.
Coordinates metric requirements of different SIGs for other components through finding common APIs.
charter_link:
label: instrumentation
leadership:
chairs:
- name: Piotr Szczesniak
github: piosz
company: Google
- name: Frederic Branczyk
github: brancz
company: Red Hat
meetings:
- description: Regular SIG Meeting
day: Thursday
time: "17:30"
tz: "UTC"
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/17emKiwJeqfrCsv0NZ2FtyDbenXGtTNCsDEiLbPa7x7Y/edit
contact:
slack: sig-instrumentation
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-instrumentation
teams:
- name: sig-instrumentation-api-reviews
description: API Changes and Reviews
- name: sig-instrumentation-bugs
description: Bug Triage and Troubleshooting
- name: sig-instrumentation-feature-requests
description: Feature Requests
- name: sig-instrumentation-misc
description: General Discussion
- name: sig-instrumentation-pr-reviews
description: PR Reviews
- name: sig-instrumentation-proposals
description: Design Proposals
- name: sig-instrumentation-test-failures
description: Test Failures and Triage
subprojects:
- name: custom-metrics-apiserver
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/custom-metrics-apiserver/master/OWNERS
- name: heapster
owners:
- https://raw.githubusercontent.com/kubernetes/heapster/master/OWNERS
- name: kube-state-metrics
owners:
- https://raw.githubusercontent.com/kubernetes/kube-state-metrics/master/OWNERS
- name: metrics-server
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/metrics-server/master/OWNERS
- name: metrics
owners:
- https://raw.githubusercontent.com/kubernetes/metrics/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/metrics/OWNERS
- name: mutating-trace-admission-controller
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/mutating-trace-admission-controller/master/OWNERS
- name: Multicluster
dir: sig-multicluster
mission_statement: >
A Special Interest Group focused on solving common challenges related to the
management of multiple Kubernetes clusters, and applications that exist therein.
The SIG will be responsible for designing, discussing, implementing and maintaining
API’s, tools and documentation related to multi-cluster administration and application
management. This includes not only active automated approaches such as Cluster
Federation, but also those that employ batch workflow-style continuous deployment
systems like Spinnaker and others. Standalone building blocks for these and other
similar systems (for example a cluster registry), and proposed changes to kubernetes
core where appropriate will also be in scope.
charter_link: charter.md
label: multicluster
leadership:
chairs:
- name: Christian Bell
github: csbell
company: Google
- name: Quinton Hoole
github: quinton-hoole-2
company: Huawei
meetings:
- description: Regular SIG Meeting
day: Tuesday
time: "9:30"
tz: "PT (Pacific Time)"
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/18mk62nOXE_MCSSnb4yJD_8UadtzJrYyJxFwbrgabHe8/edit
recordings_url: https://www.youtube.com/watch?v=iWKC3FsNHWg&list=PL69nYSiGNLP0HqgyqTby6HlDEz7i1mb0-
- description: Federation v2 Working Group
day: Wednesday
time: "7:30"
tz: "PT (Pacific Time)"
frequency: weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1v-Kb1pUs3ww_x0MiKtgcyTXCAuZlbVlz4_A9wS3_HXY/edit
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP3iKP5EzMbtNT2zOZv6RCrX
contact:
slack: sig-multicluster
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-multicluster
teams:
- name: sig-multicluster-api-reviews
description: API Changes and Reviews
- name: sig-multicluster-bugs
description: Bug Triage and Troubleshooting
- name: sig-multicluster-feature-requests
description: Feature Requests
- name: sig-multicluster-misc
description: General Discussion
- name: sig-multicluster-pr-reviews
description: PR Reviews
- name: sig-multicluster-test-failures
description: Test Failures and Triage
- name: sig-mutlicluster-proposals
description: Design Proposals
subprojects:
- name: federation-v1
owners:
- https://raw.githubusercontent.com/kubernetes/federation/master/OWNERS
- name: federation-v2
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/federation-v2/master/OWNERS
- name: cluster-registry
owners:
- https://raw.githubusercontent.com/kubernetes/cluster-registry/master/OWNERS
- name: kubemci
owners:
- https://raw.githubusercontent.com/GoogleCloudPlatform/k8s-multicluster-ingress/master/OWNERS
- name: Network
dir: sig-network
mission_statement: >
Covers networking in Kubernetes.
charter_link:
label: network
leadership:
chairs:
- name: Tim Hockin
github: thockin
company: Google
- name: Dan Williams
github: dcbw
company: Red Hat
- name: Casey Davenport
github: caseydavenport
company: Tigera
meetings:
- description: Regular SIG Meeting
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/1_w77-zG_Xj0zYvEMfQZTQ-wPP4kXkpGD8smVtW_qqWM/edit
recordings_url: https://www.youtube.com/watch?v=phCA5-vWkVM&list=PL69nYSiGNLP2E8vmnqo5MwPOY25sDWIxb
contact:
slack: sig-network
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-network
teams:
- name: sig-network-api-reviews
description: API Changes and Reviews
- name: sig-network-bugs
description: Bug Triage and Troubleshooting
- name: sig-network-feature-requests
description: Feature Requests
- name: sig-network-misc
description: General Discussion
- name: sig-network-pr-reviews
description: PR Reviews
- name: sig-network-proposals
description: Design Proposals
- name: sig-network-test-failures
description: Test Failures and Triage
subprojects:
- name: services
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/proxy/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/endpoint/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/controller/service/OWNERS
- name: kube-dns
owners:
- https://raw.githubusercontent.com/kubernetes/dns/master/OWNERS
- name: external-dns
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/external-dns/master/OWNERS
- name: ingress
owners:
- https://raw.githubusercontent.com/kubernetes/ingress-gce/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/OWNERS
- name: pod-networking
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/ip-masq-agent/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubelet/network/OWNERS
- name: network-policy
owners:
- https://raw.githubusercontent.com/kubernetes/api/master/networking/OWNERS
- name: Node
dir: sig-node
mission_statement: >
charter_link:
label: node
leadership:
chairs:
- name: Dawn Chen
github: dchen1107
company: Google
- name: Derek Carr
github: derekwaynecarr
company: Red Hat
meetings:
- description: Regular SIG Meeting
day: Tuesday
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/1Ne57gvidMEWXR70OxxnRkYquAoMpt56o75oZtg-OeBg/edit?usp=sharing
recordings_url: https://www.youtube.com/watch?v=FbKOI9-x9hI&list=PL69nYSiGNLP1wJPj5DYWXjiArF-MJ5fNG
contact:
slack: sig-node
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-node
teams:
- name: sig-node-api-reviews
description: API Changes and Reviews
- name: sig-node-bugs
description: Bug Triage and Troubleshooting
- name: sig-node-feature-requests
description: Feature Requests
- name: sig-node-pr-reviews
description: PR Reviews
- name: sig-node-proposals
description: Design Proposals
- name: sig-node-test-failures
description: Test Failures and Triage
subprojects:
- name: cri-o
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/cri-o/master/OWNERS
- name: cri-tools
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/cri-tools/master/OWNERS
- name: frakti
owners:
- https://raw.githubusercontent.com/kubernetes/frakti/master/OWNERS
- name: kubelet
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/kubelet/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubelet/OWNERS
- name: node-api
owners:
- https://raw.githubusercontent.com/kubernetes/node-api/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/node-api/OWNERS
- name: node-feature-discovery
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/node-feature-discovery/master/OWNERS
- name: node-problem-detector
owners:
- https://raw.githubusercontent.com/kubernetes/node-problem-detector/master/OWNERS
- name: rktlet
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/rktlet/master/OWNERS
- name: OpenStack
dir: sig-openstack
mission_statement: >
Coordinates the cross-community efforts of the OpenStack and Kubernetes
communities. This includes OpenStack-related contributions to Kubernetes
projects with OpenStack as: a deployment platform for Kubernetes; a
service provider for Kubernetes; a collection of applications to run on
Kubernetes.
charter_link:
label: openstack
leadership:
chairs:
- name: Chris Hoge
github: hogepodge
company: OpenStack Foundation
- name: Aditi Sharma
github: adisky
company: NEC Technologies India
- name: Christoph Glaubitz
github: chrigl
company: iNNOVO Cloud
emeritus_leads:
- name: David Lyle
github: dklyle
company: Intel
- name: Robert Morse
github: rjmorse
company: Ticketmaster
- name: Steve Gordon
github: xsgordon
company: Red Hat
- name: Ihor Dvoretskyi
github: idvoretskyi
company: CNCF
meetings:
- description: Regular SIG Meeting
day: Thursday
time: "08:00"
tz: "PT (Pacific Time)"
frequency: "biweekly starting Thursday February 28, 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
contact:
slack: sig-openstack
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-openstack
teams:
- name: sig-openstack-api-reviews
description: API Changes and Reviews
- name: sig-openstack-bugs
description: Bug Triage and Troubleshooting
- name: sig-openstack-feature-requests
description: Feature Requests
- name: sig-openstack-misc
description: General Discussion
- name: sig-openstack-pr-reviews
description: PR Reviews
- name: sig-openstack-proposals
description: Design Proposals
- name: sig-openstack-test-failures
description: Test Failures and Triage
subprojects:
- name: PM
dir: sig-pm
mission_statement: >
Focuses on aspects of product management, such as the qualification and
successful management of user requests, and aspects of project and
program management such as the continued improvement of the processes
used by the Kubernetes community to maintain the Kubernetes Project itself.
Besides helping to discover both what to build and how to build it, the
PM Group also helps to try and keep the wheels on this spaceship we are
all building together; bringing together people who think about Kubernetes
as both a vibrant community of humans and technical program is another
primary focus of this group.
Members of the Kubernetes PM Group can assume certain additional
responsibilities to help maintain the Kubernetes Project itself.
It is also important to remember that the role of managing an open
source project is very new and largely unscoped for a project as large
as Kubernetes; we are learning too and we are excited to learn how we
can best serve the community of users and contributors.
charter_link:
label: pm
leadership:
chairs:
- name: Aparna Sinha
github: apsinha
company: Google
- name: Ihor Dvoretskyi
github: idvoretskyi
company: CNCF
- name: Caleb Miles
github: calebamiles
company: Google
meetings:
- description: Regular SIG Meeting
day: Tuesday
time: "18:30"
tz: "UTC"
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/13uHgcLf-hcR4a5QbV888fhnVsF3djBEpN8HolwS0kWM/edit?usp=sharing
recordings_url: https://www.youtube.com/watch?v=VcdjaZAol2I&list=PL69nYSiGNLP3EBqpUGVsK1sMgUZVomfEQ
contact:
slack: sig-pm
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-pm
subprojects:
- name: enhancements
owners:
- https://raw.githubusercontent.com/kubernetes/enhancements/master/OWNERS
- name: Release
dir: sig-release
charter_link: charter.md
label: release
leadership:
chairs:
- name: Caleb Miles
github: calebamiles
company: Google
- name: Stephen Augustus
github: justaugustus
company: VMware
- name: Tim Pepper
github: tpepper
company: VMware
emeritus_leads:
- name: Jaice Singer DuMars
github: jdumars
company: Google
meetings:
- description: Regular SIG Meeting
day: Tuesday
time: "21:00"
tz: "UTC"
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1Fu6HxXQu8wl6TwloGUEOXVzZ1rwZ72IAhglnaAMCPqA/edit?usp=sharing
recordings_url: https://www.youtube.com/watch?v=I0KbWz8MTMk&list=PL69nYSiGNLP3QKkOsDsO6A0Y1rhgP84iZ
contact:
slack: sig-release
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-release
teams:
- name: sig-release
description: SIG Release Members
- name: sig-release-admins
description: Admins for SIG Release repositories
- name: kubernetes-milestone-maintainers
description: Milestone Maintainers
- name: kubernetes-release-managers
description: Release Managers
subprojects:
- name: hyperkube
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/build/debian-hyperkube-base/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/hyperkube/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cluster/images/hyperkube/OWNERS
- name: licensing
description: >
The Licensing subproject is responsible for analyzing/reporting/remediating
licensing concerns within the Kubernetes project orgs.
owners:
- https://raw.githubusercontent.com/kubernetes/sig-release/master/licensing/OWNERS
- name: release-engineering
description: >
The Release Engineering subproject is responsible for the
[process/procedures](https://github.com/kubernetes/sig-release/tree/master/release-engineering)
and [tools](https://github.com/kubernetes/release) used to
create/maintain Kubernetes release artifacts.
owners:
- https://raw.githubusercontent.com/kubernetes/release/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/sig-release/master/release-engineering/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/k8s-container-image-promoter/master/OWNERS
- name: release-team
description: >
The Kubernetes Release Team is responsible for the day-to-day work
required to successfully create releases of Kubernetes.
owners:
- https://raw.githubusercontent.com/kubernetes/sig-release/master/release-team/OWNERS
- name: publishing-bot
description: >
The publishing-bot publishes the contents of staging repos that live
in k8s.io/kubernetes/staging to their own repositories in kubernetes
owners:
- https://raw.githubusercontent.com/kubernetes/publishing-bot/master/OWNERS
- name: sig-release
description: >
Documents and processes related to SIG Release
owners:
- https://raw.githubusercontent.com/kubernetes/sig-release/master/OWNERS
- name: Scalability
dir: sig-scalability
mission_statement: >
SIG Scalability is responsible for defining and driving scalability goals
for Kubernetes. We also coordinate and contribute to general system-wide
scalability and performance improvements (not falling into the charter of
other individual SIGs) by driving large architectural changes and finding
bottlenecks, as well as provide guidance and consultations about any
scalability and performance related aspects of Kubernetes. <br/>
We are actively working on finding and removing various scalability
bottlenecks which should lead us towards pushing system's scalability
higher. This may include going beyond 5k nodes in the future - although
that's not our priority as of now, this is very deeply in our area of
interest and we are happy to guide and collaborate on any efforts towards
that goal as long as they are not sacrificing on overall Kubernetes
architecture (by making it non-maintainable, non-understandable, etc.).
charter_link: charter.md
label: scalability
leadership:
chairs:
- name: Wojciech Tyczynski
github: wojtek-t
company: Google
- name: Shyam Jeedigunta
github: shyamjvs
company: AWS
meetings:
- description: Regular SIG Meeting
day: Thursday
time: "17:30"
tz: "UTC"
frequency: bi-weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/a/bobsplanet.com/document/d/1hEpf25qifVWztaeZPFmjNiJvPo-5JX1z0LSvvVY5G2g/edit?usp=drive_web
recordings_url: https://www.youtube.com/watch?v=NDP1uYyom28&list=PL69nYSiGNLP2X-hzNTqyELU6jYS3p10uL
contact:
slack: sig-scalability
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-scale
teams:
- name: sig-scalability-api-reviews
description: API Changes and Reviews
- name: sig-scalability-bugs
description: Bug Triage and Troubleshooting
- name: sig-scalability-feature-requests
description: Feature Requests
- name: sig-scalability-misc
description: General Discussion
- name: sig-scalability-pr-reviews
description: PR Reviews
- name: sig-scalability-proprosals
description: Design Proposals
- name: sig-scalability-test-failures
description: Test Failures and Triage
subprojects:
- name: kubernetes-scalability-definition
description: "[Described below](#kubernetes-scalability-definition)"
owners:
- https://raw.githubusercontent.com/kubernetes/community/master/sig-scalability/slos/OWNERS
- https://raw.githubusercontent.com/kubernetes/community/master/sig-scalability/configs-and-limits/OWNERS
- name: kubernetes-scalability-governance
description: "[Described below](#kubernetes-scalability-governance)"
owners:
- https://raw.githubusercontent.com/kubernetes/community/master/sig-scalability/governance/OWNERS
- name: kubernetes-scalability-test-frameworks
description: "[Described below](#kubernetes-scalability-test-frameworks)"
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cluster/images/kubemark/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/kubemark/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/kubemark/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/test/kubemark/OWNERS
- https://raw.githubusercontent.com/kubernetes/perf-tests/master/clusterloader2/OWNERS
- https://raw.githubusercontent.com/kubernetes/perf-tests/master/OWNERS
- name: kubernetes-scalability-and-performance-tests-and-validation
description: "[Described below](#kubernetes-scalability-and-performance-tests-and-validation)"
owners:
- https://raw.githubusercontent.com/kubernetes/community/master/sig-scalability/processes/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/test/e2e/scalability/OWNERS
- name: kubernetes-scalability-bottlenecks-detection
description: "[Described below](#kubernetes-scalability-bottlenecks-detection)"
owners:
- https://raw.githubusercontent.com/kubernetes/community/master/sig-scalability/blogs/OWNERS
- name: Scheduling
dir: sig-scheduling
mission_statement: >
charter_link:
label: scheduling
leadership:
chairs:
- name: Bobby (Babak) Salamat
github: bsalamat
company: Google
- name: Klaus Ma
github: k82cn
company: Huawei
meetings:
- description: 10AM PT Meeting
day: Thursday
time: "17:00"
tz: "UTC"
frequency: biweekly starting Thursday June 7, 2018
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
- description: 5PM PT Meeting
day: Thursday
time: "24:00"
tz: "UTC"
frequency: biweekly starting Thursday June 14, 2018
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/13mwye7nvrmV11q9_Eg77z-1w3X7Q1GTbslpml4J7F3A/edit
recordings_url: https://www.youtube.com/watch?v=PweKj6SU7UA&list=PL69nYSiGNLP2vwzcCOhxrL3JVBc-eaJWI
contact:
slack: sig-scheduling
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-scheduling
teams:
- name: sig-scheduling-api-reviews
description: API Changes and Reviews
- name: sig-scheduling-bugs
description: Bug Triage and Troubleshooting
- name: sig-scheduling-feature-requests
description: Feature Requests
- name: sig-scheduling-misc
description: General Discussion
- name: sig-scheduling-pr-reviews
description: PR Reviews
- name: sig-scheduling-proposals
description: Design Proposals
- name: sig-scheduling-test-failures
description: Test Failures and Triage
subprojects:
- name: cluster-capacity
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/cluster-capacity/master/OWNERS
- name: descheduler
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/descheduler/master/OWNERS
- name: kube-batch
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/kube-batch/master/OWNERS
- name: scheduler
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/cmd/kube-scheduler/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/scheduler/OWNERS
- name: poseidon
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/poseidon/master/OWNERS
- name: Service Catalog
dir: sig-service-catalog
mission_statement: >
Service Catalog is a Kubernetes extension project that
implements the [Open Service Broker API](https://www.openservicebrokerapi.org/) (OSBAPI).
It allows application developers the ability to provision and consume cloud services natively from within Kubernetes.
charter_link: charter.md
label: service-catalog
leadership:
chairs:
- name: Carolyn Van Slyck
github: carolynvs
company: Microsoft
- name: Michael Kibbe
github: kibbles-n-bytes
company: Google
- name: Jonathan Berkhahn
github: jberkhahn
company: IBM
- name: Jay Boyd
github: jboyd01
company: Red Hat
emeritus_leads:
- name: Paul Morie
github: pmorie
company: Red Hat
- name: Aaron Schlesinger
github: arschles
company: Microsoft
- name: Ville Aikas
github: vaikas-google
company: Google
- name: Doug Davis
github: duglin
company: IBM
meetings:
- description: Regular SIG Meeting
day: Monday
time: "13:00"
tz: "PT (Pacific Time)"
frequency: weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/17xlpkoEbPR5M6P5VDzNx17q6-IPFxKyebEekCGYiIKM/edit
recordings_url: https://www.youtube.com/watch?v=ukPj1sFFkr0&list=PL69nYSiGNLP2k9ZXx9E1MvRSotFDoHUWs
contact:
slack: sig-service-catalog
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-service-catalog
teams:
- name: sig-service-catalog-api-reviews
description: API Changes and Reviews
- name: sig-service-catalog-bugs
description: Bug Triage and Troubleshooting
- name: sig-service-catalog-feature-requests
description: Feature Requests
- name: sig-service-catalog-misc
description: General Discussion
- name: sig-service-catalog-pr-reviews
description: PR Reviews
- name: sig-service-catalog-proposals
description: Design Proposals
- name: sig-service-catalog-test-failures
description: Test Failures and Triage
subprojects:
- name: service-catalog
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/service-catalog/master/OWNERS
- name: Storage
dir: sig-storage
mission_statement: >
SIG Storage is responsible for ensuring that different types of file and
block storage (whether ephemeral or persistent, local or remote) are
available wherever a container is scheduled (including provisioning/creating,
attaching, mounting, unmounting, detaching, and deleting of volumes), storage
capacity management (container ephemeral storage usage, volume resizing,
etc.), influencing scheduling of containers based on storage (data gravity,
availability, etc.), and generic operations on storage (snapshoting, etc.).
charter_link: charter.md
label: storage
leadership:
chairs:
- name: Saad Ali
github: saad-ali
company: Google
- name: Bradley Childs
github: childsb
company: Red Hat
meetings:
- description: Regular SIG Meeting
day: Thursday
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/1-8KEG8AjAgKznS9NFm3qWqkGyCHmvU6HVl0sk5hwoAE/edit?usp=sharing
recordings_url: https://www.youtube.com/watch?v=Eh7Qa7KOL8o&list=PL69nYSiGNLP02-BMqJdfFgGxYQ4Nb-2Qq
contact:
slack: sig-storage
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-storage
teams:
- name: sig-storage-api-reviews
description: API Changes and Reviews
- name: sig-storage-bugs
description: Bug Triage and Troubleshooting
- name: sig-storage-feature-requests
description: Feature Requests
- name: sig-storage-misc
description: General Discussion
- name: sig-storage-pr-reviews
description: PR Reviews
- name: sig-storage-proposals
description: Design Proposals
- name: sig-storage-test-failures
description: Test Failures and Triage
subprojects:
- name: kubernetes-csi
owners:
- https://raw.githubusercontent.com/kubernetes-csi/csi-driver-flex/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/csi-driver-host-path/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/csi-driver-image-populator/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/csi-driver-iscsi/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/csi-lib-common/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/csi-lib-fc/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/csi-lib-iscsi/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/csi-test/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/docs/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/driver-registrar/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/drivers/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/kubernetes-csi.github.io/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/livenessprobe/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/external-attacher/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/external-snapshotter/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/external-provisioner/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/external-resizer/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/csi-api/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/csi-api/OWNERS
- https://raw.githubusercontent.com/kubernetes/csi-translation-lib/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/staging/src/k8s.io/csi-translation-lib/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/cluster-driver-registrar/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/node-driver-registrar/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/csi-lib-utils/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-csi/csi-release-tools/master/OWNERS
- name: external-storage
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/external-storage/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/sig-storage-lib-external-provisioner/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/sig-storage-local-static-provisioner/master/OWNERS
- name: git-sync
owners:
- https://raw.githubusercontent.com/kubernetes/git-sync/master/OWNERS
- name: nfs-provisioner
owners:
- https://raw.githubusercontent.com/kubernetes-incubator/nfs-provisioner/master/OWNERS
- name: volumes
owners:
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/volume/OWNERS
- name: Testing
dir: sig-testing
mission_statement: >
Interested in how we can most effectively test Kubernetes. We're
interested specifically in making it easier for the community to run
tests and contribute test results, to ensure Kubernetes is stable across
a variety of cluster configurations and cloud providers.
charter_link:
label: testing
leadership:
chairs:
- name: Aaron Crickenberger
github: spiffxp
company: Google
- name: Erick Fejta
github: fejta
company: Google
- name: Steve Kuznetsov
github: stevekuznetsov
company: Red Hat
- name: Timothy St. Clair
github: timothysc
company: VMware
meetings:
- description: Regular SIG Meeting
day: Tuesday
time: "13:00"
tz: "PT (Pacific Time)"
frequency: weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://bit.ly/k8s-sig-testing-notes
recordings_url: https://bit.ly/k8s-sig-testing-videos
contact:
slack: sig-testing
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-testing
teams:
- name: sig-testing
description: General Discussion
- name: sig-testing-pr-reviews
description: PR Reviews
subprojects:
- name: boskos
description: >
Boskos is a resource manager service that handles different kinds of
resources and transitions between different states. We use it on the
Kubernetes project to manage pools of GCP projects for CI/CD.
owners:
- https://raw.githubusercontent.com/kubernetes/test-infra/master/boskos/OWNERS
- name: gopherage
description: >
Gopherage is a tool for manipulating Go coverage files. We use it on
the Kubernetes project to report on code coverage due to e2e tests
owners:
- https://raw.githubusercontent.com/kubernetes/test-infra/master/gopherage/OWNERS
- name: gubernator
description: >
Gubernator is a frontend for displaying Kubernetes test results stored
in GCS. See gubernator.k8s.io to see it in action for the Kubernetes
project.
owners:
- https://raw.githubusercontent.com/kubernetes/test-infra/master/gubernator/OWNERS
- name: kind
description: >
Kubernetes IN Docker. Run Kubernetes test clusters on your local
machine using Docker containers as nodes.
meetings:
- description: sigs.k8s.io/kind weekly meeting
day: Monday
time: "11:00"
tz: "PT (Pacific Time)"
frequency: weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1b9Ppm7ZT_tMWRs5Ph1zGJJKb5nF9c3ZHzMwg1olJIrc/edit
recordings_url: https://bit.ly/k8s-sig-testing-videos
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/kind/master/OWNERS
- name: prow
description: >
Prow is a CI/CD system based on Kubernetes. See prow.k8s.io to see it
in action for the Kubernetes project
owners:
- https://raw.githubusercontent.com/kubernetes/test-infra/master/prow/OWNERS
- name: testing-commons
description: >
The Testing Commons is a subproject within the Kubernetes sig-testing community
interested code structure, layout, and execution of common test code used
throughout the kubernetes project
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/testing_frameworks/master/OWNERS
- https://raw.githubusercontent.com/kubernetes/kubernetes/master/test/OWNERS
meetings:
- description: Testing Commons
day: Friday
time: "07:30"
tz: "PT (Pacific Time)"
frequency: bi-weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1TOC8vnmlkWw6HRNHoe5xSv5-qv7LelX6XK3UVCHuwb0/edit#heading=h.tnoevy5f439o
- name: test-infra
description: >
Miscellaneous tools and configuration to run the testing infrastructure
for the Kubernetes project
owners:
- https://raw.githubusercontent.com/kubernetes/test-infra/master/OWNERS
- name: UI
dir: sig-ui
mission_statement: >
Covers all things UI related. Efforts are centered around Kubernetes
Dashboard: a general purpose, web-based UI for Kubernetes clusters. It
allows users to manage applications running in the cluster and
troubleshoot them, as well as manage the cluster itself.
charter_link:
label: ui
leadership:
chairs:
- name: Sebastian Florek
github: floreks
company: Loodse
- name: Marcin Maciaszczyk
github: maciaszczykm
company: Loodse
- name: Dan Romlein
github: danielromlein
company: Google
- name: Jeffrey Sica
github: jeefy
company: University of Michigan
meetings:
- description: Regular SIG Meeting
day: Thursday
time: "18:00"
tz: "CET (Central European Time)"
frequency: bi-weekly
url: https://groups.google.com/forum/#!forum/kubernetes-sig-ui
archive_url: https://docs.google.com/document/d/1PwHFvqiShLIq8ZpoXvE3dSUnOv1ts5BTtZ7aATuKd-E/edit?usp=sharing
recordings_url:
contact:
slack: sig-ui
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-ui
subprojects:
- name: dashboard
owners:
- https://raw.githubusercontent.com/kubernetes/dashboard/master/OWNERS
- https://raw.githubusercontent.com/kubernetes-sigs/dashboard-metrics-scraper/master/OWNERS
- name: VMware
dir: sig-vmware
mission_statement: >
Bring together members of the VMware and Kubernetes community to maintain,
support and run Kubernetes on VMware platforms.
charter_link:
label: vmware
leadership:
chairs:
- name: Fabio Rapposelli
github: frapposelli
company: VMware
- name: Steve Wong
github: cantbewong
company: VMware
meetings:
- description: Regular SIG Meeting
day: Thursday
time: "11: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/1RV0nVtlPoAtM0DQwNYxYCC9lHfiHpTNatyv4bek6XtA/edit?usp=sharing
recordings_url: https://www.youtube.com/playlist?list=PLutJyDdkKQIqKv-Zq8WbyibQtemChor9y
- 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
- description: Cluster API Provider vSphere bi-weekly syncup
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
contact:
slack: sig-vmware
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-vmware
teams:
- name: sig-vmware-api-reviews
description: API Changes and Reviews
- name: sig-vmware-bugs
description: Bug Triage and Troubleshooting
- name: sig-vmware-feature-requests
description: Feature Requests
- name: sig-vmware-members
description: Release Team Members
- name: sig-vmware-misc
description: General Discussion
- name: sig-vmware-pr-reviews
description: PR Reviews
- name: sig-vmware-proposals
description: Design Proposals
- name: sig-vmware-test-failures
description: Test Failures and Triage
subprojects:
- name: cluster-api-provider-vsphere
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/cluster-api-provider-vsphere/master/OWNERS
- name: Windows
dir: sig-windows
mission_statement: >
Focuses on supporting Windows Node and scheduling Windows Server containers on Kubernetes.
charter_link:
label: windows
leadership:
chairs:
- name: Michael Michael
github: michmike
company: VMware
- name: Patrick Lang
github: patricklang
company: Microsoft
meetings:
- description: Regular SIG Meeting
day: Tuesday
time: "12:30"
tz: "Eastern Standard Time (EST)"
frequency: weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1Tjxzjjuy4SQsFSUVXZbvqVb64hjNAG5CQX8bK7Yda9w/edit#heading=h.kbz22d1yc431
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP2OH9InCcNkWNu2bl-gmIU4
contact:
slack: sig-windows
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-sig-windows
teams:
- name: sig-windows-bugs
description: Bug Triage and Troubleshooting
- name: sig-windows-feature-requests
description: Feature Requests
- name: sig-windows-misc
description: General Discussion
subprojects:
- name: windows-gmsa
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/windows-gmsa/master/OWNERS
- name: windows-testing
owners:
- https://raw.githubusercontent.com/kubernetes-sigs/windows-testing/master/OWNERS
workinggroups:
- name: Resource Management
dir: wg-resource-management
mission_statement: >
Designing and shepherding cross-cutting features around compute resource isolation and utilization.
charter_link:
leadership:
chairs:
- name: Vishnu Kannan
github: vishh
company: Google
- name: Derek Carr
github: derekwaynecarr
company: Red Hat
meetings:
- description: Regular WG Meeting
day: Wednesday
time: "11:00"
tz: "PT (Pacific Time)"
frequency: biweekly (On demand)
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1j3vrG6BgE0hUDs2e-1ZUegKN4W4Adb1B6oJ6j-4kyPU
recordings_url: https://www.youtube.com/watch?v=FUUJeWIEej0&list=PL69nYSiGNLP2uTrVwZCFtdEvLQvsbG2w4
contact:
slack: wg-resource-mgmt
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-resource-management
- name: LTS
dir: wg-lts
mission_statement: >
Answer the question: Does Kubernetes need a longer support
term? If yes, figure out what that looks like for Kubernetes
and propose this to the rest of the project. If no, figure
out how to help end users cope with this and propose that to
the rest of the project. If a proposal is accepted, the working
group's mission will change to implement it.
The working group is sponsored by SIG Release, but has the
potential to span almost all SIGs. For more background see
the [WG formation proposal](https://docs.google.com/presentation/d/1-Z-mUNIs3mUi7AdP1KwoAVNviwKrCoo3lxMb5wzCWbk/edit?usp=sharing).
charter_link: charter.md
stakeholder_sigs:
- API Machinery
- CLI
- Node
leadership:
chairs:
- name: Tim Pepper
github: tpepper
company: VMware
- name: Dhawal Yogesh Bhanusali
github: imkin
company: VMware
- name: Quinton Hoole
github: quinton-hoole-2
company: Huawei
- name: Nick Young
github: youngnick
company: Atlassian
meetings:
- description: Regular WG Meeting
day: Tuesday
time: "09: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/1J2CJ-q9WlvCnIVkoEo9tAo19h08kOgUJAS3HxaSMsLA/edit?usp=sharing
recordings_url:
contact:
slack: wg-lts
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-lts
- name: Apply
dir: wg-apply
# We might want to create a charter here.
mission_statement: >
Improve the state of declarative object management by fixing `kubectl apply`,
moving the logic from the client to the server. This move also enables new/fixed
features included in the scope of this working-group: diff, dry-run and prune.
Resources can be found in [this Google drive folder](https://drive.google.com/drive/folders/1wlpgkS2gFZXdp4x2WlRsfUBxkFlt2Gx0)
charter_link:
leadership:
chairs:
# TBD: We probably need more people here?
- name: Daniel Smith
github: lavalamp
company: Google
meetings:
- description: Regular WG Meeting
day: Tuesday
time: "9:30"
tz: "PT (Pacific Time)"
frequency: weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
contact:
slack: wg-apply
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-apply
- name: Multitenancy
dir: wg-multitenancy
mission_statement: >
Define the models of multitenancy that Kubernetes will support. Discuss and execute upon any remaining work that needs to be done to support these models. Create conformance tests that will prove that these models can be built and used in production environments.
charter_link:
leadership:
chairs:
- name: David Oppenheimer
github: davidopp
company: Google
- name: Tasha Drew
github: tashimi
company: VMware
meetings:
- description: Regular WG Meeting
day: Tuesday
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/1fj3yzmeU2eU8ZNBCUJG97dk_wC7228-e_MmdcmTNrZY/edit?usp=sharing
recordings_url: https://www.youtube.com/playlist?list=PL69nYSiGNLP1tBA0W8zEe6UwPsabGQk-j
contact:
slack: wg-multitenancy
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-multitenancy
- name: Policy
dir: wg-policy
mission_statement: >
Provide an overall architecture that describes both the current policy related implementations as well as future policy related proposals in Kubernetes. Through a collaborative method, we want to present both dev and end user a universal view of policy architecture in Kubernetes.
charter_link:
leadership:
chairs:
- name: Howard Huang
github: hannibalhuang
company: Huawei
- name: Torin Sandall
github: tsandall
company: Styra
- name: Yisui Hu
github: easeway
company: Google
- name: Erica von Buelow
github: ericavonb
company: Red Hat
- name: Michael Elder
github: mdelder
company: IBM
meetings:
- description: Regular WG Meeting
day: Wednesday
time: "16:00"
tz: "PT (Pacific Time)"
frequency: weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1ihFfEfgViKlUMbY2NKxaJzBkgHh-Phk5hqKTzK-NEEs/edit?usp=sharing
contact:
slack: wg-policy
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-policy
- name: Machine Learning
dir: wg-machine-learning
mission_statement: >
Identify and fix gaps in Kubernetes to better support Machine Learning applications
charter_link:
leadership:
chairs:
- name: Vishnu Kannan
github: vishh
company: Google
- name: Kenneth Owens
github: kow3ns
company: Google
- name: Balaji Subramaniam
github: balajismaniam
company: Intel
- name: Connor Doyle
github: ConnorDoyle
company: Intel
meetings:
- description: Regular WG Meeting
day: Thursday
time: "13:00"
tz: "PT (Pacific Time)"
frequency: biweekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://goo.gl/gBCdt1
contact:
slack: wg-machine-learning
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-machine-learning
- name: IoT Edge
dir: wg-iot-edge
mission_statement: >
A Working Group dedicated to discussing, designing and documenting using Kubernetes for developing and deploying IoT and Edge specific applications
leadership:
chairs:
- name: Cindy Xing
github: cindyxing
company: Huawei
- name: Dejan Bosanac
github: dejanb
company: Red Hat
- name: Preston Holmes
github: ptone
company: Google
- name: Steve Wong
github: cantbewong
company: VMWare
meetings:
- description: Regular WG Meeting
day: Wednesday
time: "17:00"
tz: "UTC"
frequency: every four weeks
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1Yuwy9IO4X6XKq2wLW0pVZn5yHQxlyK7wdYBZBXRWiKI/edit?usp=sharing
- description: APAC WG Meeting
day: Wednesday
time: "5:00"
tz: "UTC"
frequency: every four weeks
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: https://docs.google.com/document/d/1Yuwy9IO4X6XKq2wLW0pVZn5yHQxlyK7wdYBZBXRWiKI/edit?usp=sharing
contact:
slack: wg-iot-edge
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-iot-edge
- name: Security Audit
dir: wg-security-audit
mission_statement: >
Perform a security audit on k8s with a vendor and produce as artifacts a threat model and whitepaper outlining everything found during the audit.
charter_link:
leadership:
chairs:
- name: Aaron Small
github: aasmall
company: Google
- name: Joel Smith
github: joelsmith
company: Red Hat
- name: Craig Ingram
github: cji
company: Salesforce
- name: Jay Beale
github: jaybeale
company: InGuardians
meetings:
- description: Regular WG Meeting
day: Monday
time: "13:00"
tz: "PT (Pacific Time)"
frequency: weekly
url: https://docs.google.com/document/d/1RbC4SBZBlKth7IjYv_NaEpnmLGwMJ0ElpUOmsG-bdRA/edit
contact:
slack: wg-security-audit
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-security-audit
- name: Component Standard
dir: wg-component-standard
label: component-standard
mission_statement: >
Develop a standard foundation (philosophy and libraries) for core Kubernetes components to build on top of.
Areas to standardize include configuration (flags, ComponentConfig APIs, ...), status endpoints (healthz, configz, ...), integration points (delegated authn/z, ...), and logging.
Details are outlined in KEP 0032: https://github.com/kubernetes/enhancements/blob/master/keps/sig-cluster-lifecycle/0032-create-a-k8s-io-component-repo.md.
leadership:
chairs:
- name: Lucas Käldström
github: luxas
company: Luxas Labs (occasionally contracting for Weaveworks)
- name: Dr. Stefan Schimanski
github: sttts
company: Red Hat
- name: Michael Taufen
github: mtaufen
company: Google
stakeholder_sigs:
- Architecture
- API Machinery
- Cluster Lifecycle
meetings:
- description: Regular WG Meeting
day: Tuesday
time: "08:30"
tz: "PT (Pacific Time)"
frequency: weekly
url: https://zoom.us/j/705540322
archive_url: https://docs.google.com/document/d/18TsodX0fqQgViQ7HHUTAhiAwkf6bNhPXH4vNVTI7GwI
contact:
slack: wg-component-standard
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-component-standard
teams:
- name: wg-component-standard
description: Component Standard Discussion
- name: K8s Infra
dir: wg-k8s-infra
mission_statement: >
A Working Group dedicated to migrating Kubernetes project infrastructure
over to the CNCF, and the creation of teams and processes for ongoing
maintenance. Involves collaboration with multiple SIGs such as
Architecture, Contributor Experience, Release, and Testing, etc.
charter_link: charter.md
stakeholder_sigs:
- Architecture
- Contributor Experience
- Release
- Testing
leadership:
chairs:
- name: Davanum Srinivas
github: dims
company: Huawei
- name: Aaron Crickenberger
github: spiffxp
company: Google
meetings:
- description: Regular WG Meeting
day: Wednesday
time: "8:30"
tz: "PT (Pacific Time)"
frequency: bi-weekly
url: https://docs.google.com/document/d/1FQx0BPlkkl1Bn0c9ocVBxYIKojpmrS1CFP5h0DI68AE/edit
archive_url: http://bit.ly/wg-k8s-infra-notes
recordings_url: http://bit.ly/wg-k8s-infra-playlist
contact:
slack: wg-k8s-infra
mailing_list: https://groups.google.com/forum/#!forum/kubernetes-wg-k8s-infra
|