forked from kubernetes/test-infra
-
Notifications
You must be signed in to change notification settings - Fork 1
/
labels.yaml
1558 lines (1558 loc) · 51.3 KB
/
labels.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# default: global configuration to be applied to all repos
# repos: list of repos with specific configuration to be applied in addition to default
# labels: list of labels - keys for each item: color, description, name, target, deleteAfter, previously
# deleteAfter: 2006-01-02T15:04:05Z (rfc3339)
# previously: list of previous labels (color name deleteAfter, previously)
# target: one of issues, prs, or both (also TBD)
# addedBy: human? prow plugin? other?
---
default:
labels:
- color: e11d21
description: Categorizes an issue or PR as actively needing an API review.
name: api-review
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PRs related to Kubernetes licensing
name: area/licensing
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to dependency changes
name: area/dependency
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to aws provider
name: area/provider/aws
target: both
addedBy: label
previously:
- name: area/platform/aws
- name: area/platform/eks
- name: sig/aws
- name: aws
- color: 0052cc
description: Issues or PRs related to azure provider
name: area/provider/azure
target: both
addedBy: label
previously:
- name: area/platform/aks
- name: area/platform/azure
- name: sig/azure
- name: azure
- color: 0052cc
description: Issues or PRs related to digitalocean provider
name: area/provider/digitalocean
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to gcp provider
name: area/provider/gcp
target: both
addedBy: label
previously:
- name: area/platform/gcp
- name: area/platform/gke
- name: sig/gcp
- name: gcp
- color: 0052cc
description: Issues or PRs related to ibmcloud provider
name: area/provider/ibmcloud
target: both
addedBy: label
previously:
- name: sig/ibmcloud
- name: ibmcloud
- color: 0052cc
description: Issues or PRs related to openstack provider
name: area/provider/openstack
target: both
addedBy: label
previously:
- name: sig/openstack
- name: openstack
- color: 0052cc
description: Issues or PRs related to vmware provider
name: area/provider/vmware
target: both
addedBy: label
previously:
- name: area/platform/vsphere
- name: sig/vmware
- name: vmware
- color: 0ffa16
description: Indicates a PR has been approved by an approver from all required OWNERS files.
name: approved
target: prs
prowPlugin: approve
addedBy: approvers
- color: fef2c0
description: Indicates a cherry-pick PR into a release branch has been approved by the release branch manager. # Consumed by the kubernetes/kubernetes cherry-pick-queue.
name: cherry-pick-approved
target: prs
addedBy: humans
previously:
- name: cherrypick-approved
- color: d455d0
description: Indicates an issue is a duplicate of other open issue.
name: triage/duplicate
target: both
previously:
- name: close/duplicate
- name: duplicate
addedBy: humans
- color: d455d0
description: Indicates an issue needs more information in order to work on it.
name: triage/needs-information
previously:
- name: close/needs-information
target: both
addedBy: humans
- color: d455d0
description: Indicates an issue can not be reproduced as described.
name: triage/not-reproducible
previously:
- name: close/not-reproducible
target: both
addedBy: humans
- color: d455d0
description: Indicates an issue that is a support question.
name: triage/support
previously:
- name: close/support
- name: kind/support
- name: question
target: both
addedBy: humans
- color: d455d0
description: Indicates an issue that can not or will not be resolved.
name: triage/unresolved
previously:
- name: close/unresolved
- name: invalid
- name: wontfix
target: both
addedBy: humans
- color: c0ff4a
description: Denotes an issue or PR intended to be handled by the code of conduct committee. # (as of yet non-existent)
name: committee/code-of-conduct
target: both
prowPlugin: label
addedBy: anyone
previously:
- name: committee/conduct
- color: c0ff4a
description: Denotes an issue or PR intended to be handled by the steering committee.
name: committee/steering
target: both
prowPlugin: label
addedBy: anyone
- color: c0ff4a
description: Denotes an issue or PR intended to be handled by the product security committee.
name: committee/product-security
target: both
prowPlugin: label
addedBy: anyone
- color: e11d21
description: Indicates the PR's author has not signed the CNCF CLA.
name: 'cncf-cla: no'
target: prs
prowPlugin: cla
addedBy: prow
- color: bfe5bf
description: Indicates the PR's author has signed the CNCF CLA.
name: 'cncf-cla: yes'
target: prs
prowPlugin: cla
addedBy: prow
- color: e11d21
description: DEPRECATED. Indicates that a PR should not merge. Label can only be manually applied/removed.
name: do-not-merge
target: prs
addedBy: humans
- color: e11d21
description: Indicates that a PR should not merge because it touches files in blocked paths.
name: do-not-merge/blocked-paths
target: prs
prowPlugin: blockade
addedBy: prow
- color: e11d21
description: Indicates that a PR is not yet approved to merge into a release branch.
name: do-not-merge/cherry-pick-not-approved
target: prs
addedBy: prow
prowPlugin: cherrypickunapproved
- color: e11d21
description: Indicates that a PR should not merge because someone has issued a /hold command.
name: do-not-merge/hold
target: prs
prowPlugin: hold
addedBy: anyone
- color: e11d21
description: Indicates that a PR should not merge because it has an invalid commit message.
name: do-not-merge/invalid-commit-message
target: prs
prowPlugin: invalidcommitmsg
addedBy: prow
- color: e11d21
description: Indicates that a PR should not merge because it has an invalid OWNERS file in it.
name: do-not-merge/invalid-owners-file
target: prs
prowPlugin: verify-owners
addedBy: prow
- color: e11d21
description: Indicates that a PR should not merge because it's missing one of the release note labels.
name: do-not-merge/release-note-label-needed
previously:
- name: release-note-label-needed
target: prs
prowPlugin: releasenote
addedBy: prow
- color: e11d21
description: Indicates that a PR should not merge because it is a work in progress.
name: do-not-merge/work-in-progress
target: prs
prowPlugin: wip
addedBy: prow
- color: 7057ff
description: Denotes an issue ready for a new contributor, according to the "help wanted" guidelines.
name: 'good first issue'
previously:
- name: for-new-contributors
target: issues
prowPlugin: help
addedBy: anyone
- color: 006b75
description: Denotes an issue that needs help from a contributor. Must meet "help wanted" guidelines.
name: 'help wanted'
previously:
- name: help-wanted
target: issues
prowPlugin: help
addedBy: anyone
- color: e11d21
description: Categorizes issue or PR as related to adding, removing, or otherwise changing an API
name: kind/api-change
previously:
- name: kind/new-api
target: both
prowPlugin: label
addedBy: anyone
- color: e11d21
description: Categorizes issue or PR as related to a bug.
name: kind/bug
previously:
- name: bug
target: both
prowPlugin: label
addedBy: anyone
- color: c7def8
description: Categorizes issue or PR as related to cleaning up code, process, or technical debt.
name: kind/cleanup
previously:
- name: kind/friction
- name: kind/technical-debt
target: both
prowPlugin: label
addedBy: anyone
- color: e11d21
description: Categorizes issue or PR as related to a feature/enhancement marked for deprecation.
name: kind/deprecation
target: both
prowPlugin: label
addedBy: anyone
- color: c7def8
description: Categorizes issue or PR as related to design.
name: kind/design
target: both
prowPlugin: label
addedBy: anyone
- color: c7def8
description: Categorizes issue or PR as related to documentation.
name: kind/documentation
previously:
- name: kind/old-docs
target: both
prowPlugin: label
addedBy: anyone
- color: e11d21
description: Categorizes issue or PR as related to a consistently or frequently failing test.
name: kind/failing-test
previously:
- name: priority/failing-test
- name: kind/e2e-test-failure
- name: kind/upgrade-test-failure
target: both
prowPlugin: label
addedBy: anyone
- color: c7def8
description: Categorizes issue or PR as related to a new feature.
name: kind/feature
previously:
- name: enhancement
- name: kind/enhancement
target: both
prowPlugin: label
addedBy: anyone
- color: f7c6c7
description: Categorizes issue or PR as related to a flaky test.
name: kind/flake
target: both
prowPlugin: label
addedBy: anyone
- color: e11d21
description: Categorizes issue or PR as related to a regression from a prior release.
name: kind/regression
target: both
prowPlugin: label
addedBy: anyone
- color: 15dd18
description: Indicates that a PR is ready to be merged.
name: lgtm
target: prs
prowPlugin: lgtm
addedBy: reviewers or members
- color: d3e2f0
description: Indicates that an issue or PR should not be auto-closed due to staleness.
name: lifecycle/frozen
previously:
- name: keep-open
target: both
prowPlugin: lifecycle
addedBy: anyone
- color: 8fc951
description: Indicates that an issue or PR is actively being worked on by a contributor.
name: lifecycle/active
previously:
- name: active
target: both
prowPlugin: lifecycle
addedBy: anyone
- color: "604460"
description: Denotes an issue or PR that has aged beyond stale and will be auto-closed.
name: lifecycle/rotten
target: both
prowPlugin: lifecycle
addedBy: anyone or [@fejta-bot](https://github.com/fejta-bot) via [periodic-test-infra-rotten prowjob](https://prow.k8s.io/?job=periodic-test-infra-rotten)
- color: "795548"
description: Denotes an issue or PR has remained open with no activity and has become stale.
name: lifecycle/stale
previously:
- name: stale
target: both
prowPlugin: lifecycle
addedBy: anyone or [@fejta-bot](https://github.com/fejta-bot) via [periodic-test-infra-stale prowjob](https://prow.k8s.io/?job=periodic-test-infra-stale)
- color: ededed
description: Indicates a PR lacks a `kind/foo` label and requires one.
name: needs-kind
target: prs
prowPlugin: require-matching-label
addedBy: prow
- color: b60205
description: Indicates a PR that requires an org member to verify it is safe to test. # This is to prevent spam/abuse of our CI system, and can be circumvented by becoming an org member. Org members can remove this label with the `/ok-to-test` command.
name: needs-ok-to-test
target: prs
prowPlugin: trigger
addedBy: prow
- color: e11d21
description: Indicates a PR cannot be merged because it has merge conflicts with HEAD.
name: needs-rebase
target: prs
prowPlugin: needs-rebase
isExternalPlugin: true
addedBy: prow
- color: ededed
description: Indicates an issue or PR lacks a `sig/foo` label and requires one.
name: needs-sig
target: both
prowPlugin: require-matching-label
addedBy: prow
- color: 15dd18
description: Indicates a non-member PR verified by an org member that is safe to test. # This is the opposite of needs-ok-to-test and should be mutually exclusive.
name: ok-to-test
target: prs
prowPlugin: trigger
addedBy: prow
- color: fef2c0
description: Lowest priority. Possibly useful, but not yet enough support to actually get it done. # These are mostly place-holders for potentially good ideas, so that they don't get completely forgotten, and can be referenced /deduped every time they come up.
name: priority/awaiting-more-evidence
target: both
prowPlugin: label
addedBy: anyone
- color: fbca04
description: Higher priority than priority/awaiting-more-evidence. # There appears to be general agreement that this would be good to have, but we may not have anyone available to work on it right now or in the immediate future. Community contributions would be most welcome in the mean time (although it might take a while to get them reviewed if reviewers are fully occupied with higher priority issues, for example immediately before a release).
name: priority/backlog
target: both
prowPlugin: label
addedBy: anyone
- color: e11d21
description: Highest priority. Must be actively worked on as someone's top priority right now. # Stuff is burning. If it's not being actively worked on, someone is expected to drop what they're doing immediately to work on it. Team leaders are responsible for making sure that all the issues, labeled with this priority, in their area are being actively worked on. Examples include user-visible bugs in core features, broken builds or tests and critical security issues.
name: priority/critical-urgent
target: both
prowPlugin: label
addedBy: anyone
- color: eb6420
description: Important over the long term, but may not be staffed and/or may need multiple releases to complete.
name: priority/important-longterm
target: both
prowPlugin: label
addedBy: anyone
- color: eb6420
description: Must be staffed and worked on either currently, or very soon, ideally in time for the next release.
name: priority/important-soon
target: both
prowPlugin: label
addedBy: anyone
- color: c2e0c6
description: Denotes a PR that will be considered when it comes time to generate release notes.
name: release-note
target: prs
prowPlugin: releasenote
addedBy: prow
- color: c2e0c6
description: Denotes a PR that introduces potentially breaking changes that require user action. # These actions will be specifically called out when it comes time to generate release notes.
name: release-note-action-required
target: prs
prowPlugin: releasenote
addedBy: prow
- color: c2e0c6
description: Denotes a PR that doesn't merit a release note. # will be ignored when it comes time to generate release notes.
name: release-note-none
target: prs
prowPlugin: releasenote
addedBy: prow or member or author
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG API Machinery.
name: sig/api-machinery
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Apps.
name: sig/apps
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Architecture.
name: sig/architecture
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Auth.
name: sig/auth
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Autoscaling.
name: sig/autoscaling
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG CLI.
name: sig/cli
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Cloud Provider.
name: sig/cloud-provider
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Cluster Lifecycle.
name: sig/cluster-lifecycle
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Contributor Experience.
name: sig/contributor-experience
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Docs.
name: sig/docs
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Instrumentation.
name: sig/instrumentation
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Multicluster.
name: sig/multicluster
previously:
- name: sig/federation
- name: 'sig/federation (deprecated - do not use)'
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Network.
name: sig/network
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Node.
name: sig/node
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Release.
name: sig/release
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Scalability.
name: sig/scalability
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Scheduling.
name: sig/scheduling
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Security.
name: sig/security
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Service Catalog.
name: sig/service-catalog
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Storage.
name: sig/storage
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Testing.
name: sig/testing
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG UI.
name: sig/ui
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Usability.
name: sig/usability
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to SIG Windows.
name: sig/windows
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to WG API Expression.
name: wg/api-expression
target: both
prowPlugin: label
addedBy: anyone
previously:
- name: wg/apply
- color: d2b48c
description: Categorizes an issue or PR as relevant to WG IOT Edge.
name: wg/iot-edge
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to WG k8s Infra.
name: wg/k8s-infra
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to WG LTS.
name: wg/lts
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to WG Machine Learning.
name: wg/machine-learning
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to WG Multitenancy.
name: wg/multitenancy
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to WG Naming.
name: wg/naming
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to WG Policy.
name: wg/policy
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to WG Resource Management.
name: wg/resource-management
target: both
prowPlugin: label
addedBy: anyone
deleteAfter: 2020-04-08T00:00:00Z
- color: d2b48c
description: Categorizes an issue or PR as relevant to WG Security Audit.
name: wg/security-audit
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to WG Component Standard.
name: wg/component-standard
target: both
prowPlugin: label
addedBy: anyone
- color: d2b48c
description: Categorizes an issue or PR as relevant to ug-big-data.
name: ug/big-data
target: both
prowPlugin: label
addedBy: anyone
previously:
- name: sig/big-data
- color: d2b48c
description: Categorizes an issue or PR as relevant to ug-vmware.
name: ug/vmware
target: both
prowPlugin: label
addedBy: anyone
- color: ee9900
description: Denotes a PR that changes 100-499 lines, ignoring generated files.
name: size/L
target: prs
prowPlugin: size
addedBy: prow
- color: eebb00
description: Denotes a PR that changes 30-99 lines, ignoring generated files.
name: size/M
target: prs
prowPlugin: size
addedBy: prow
- color: 77bb00
description: Denotes a PR that changes 10-29 lines, ignoring generated files.
name: size/S
target: prs
prowPlugin: size
addedBy: prow
- color: ee5500
description: Denotes a PR that changes 500-999 lines, ignoring generated files.
name: size/XL
target: prs
prowPlugin: size
addedBy: prow
- color: "009900"
description: Denotes a PR that changes 0-9 lines, ignoring generated files.
name: size/XS
target: prs
prowPlugin: size
addedBy: prow
- color: ee0000
description: Denotes a PR that changes 1000+ lines, ignoring generated files.
name: size/XXL
target: prs
prowPlugin: size
addedBy: prow
- color: ffaa00
description: Denotes a PR that should be squashed by tide when it merges.
name: tide/merge-method-squash
target: prs
addedBy: humans
previously:
- name: tide/squash
- color: ffaa00
description: Denotes a PR that should be rebased by tide when it merges.
name: tide/merge-method-rebase
target: prs
addedBy: humans
- color: ffaa00
description: Denotes a PR that should use a standard merge by tide when it merges.
name: tide/merge-method-merge
target: prs
addedBy: humans
- color: e11d21
description: Denotes an issue that blocks the tide merge queue for a branch while it is open.
name: tide/merge-blocker
target: issues
addedBy: humans
previously:
- name: merge-blocker
- color: f9d0c4
description: ¯\\\_(ツ)_/¯
name: "¯\\_(ツ)_/¯"
target: both
prowPlugin: shrug
addedBy: humans
repos:
kubernetes/community:
labels:
- color: 0052cc
description: Issues or PRs related to the Contributor Summit in China
name: area/cn-summit
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to kubernetes code organization
name: area/code-organization
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to kubernetes conformance tests
name: area/conformance
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to the contributor guide
name: area/contributor-guide
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to all Contributor Summit events
name: area/contributor-summit
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to deflaking kubernetes tests
name: area/deflake
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to the developer guide
name: area/developer-guide
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to the devstats subproject
name: area/devstats
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to refactoring the kubernetes e2e test framework
name: area/e2e-test-framework
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to the Enhancements subproject
name: area/enhancements
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to GitHub Management subproject
name: area/github-management
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to the Contributor Summit in North America
name: area/na-summit
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to the Contributor Summit in Europe
name: area/eu-summit
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to the release-team subproject
name: area/release-team
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to the Slack Management subproject
name: area/slack-management
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to the upstream marketing team
name: area/contributor-comms
target: both
addedBy: humans
kubernetes/enhancements:
labels:
- color: 0052cc
description: Issues or PRs related to kubernetes code organization
name: area/code-organization
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PRs related to the upstream marketing team
name: area/contributor-comms
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PRs related to the Enhancements subproject
name: area/enhancements
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PRs related to the Release Engineering subproject
name: area/release-eng
previously:
- name: area/release-infra
target: both
prowPlugin: label
addedBy: anyone
- color: cc99ff
description: Categorizes KEP tracking issues and PRs modifying the KEP directory
name: kind/kep
target: both
prowPlugin: label
addedBy: anyone
- color: d93f0b
description: Denotes an issue tracking an enhancement targeted for Alpha status
name: stage/alpha
target: issues
prowPlugin: stage
addedBy: anyone
- color: fbca04
description: Denotes an issue tracking an enhancement targeted for Beta status
name: stage/beta
target: issues
prowPlugin: stage
addedBy: anyone
- color: 0e8a16
description: Denotes an issue tracking an enhancement targeted for Stable/GA status
name: stage/stable
target: issues
prowPlugin: stage
addedBy: anyone
- color: eb6420
description: Denotes an out-of-tree enhancement issue, which does not need to be tracked by the Release Team
name: tracked/out-of-tree
target: issues
addedBy: humans
- color: e04338
description: Denotes an enhancement issue is NOT actively being tracked by the Release Team
name: tracked/no
target: issues
addedBy: humans
- color: 108737
description: Denotes an enhancement issue is actively being tracked by the Release Team
name: tracked/yes
target: issues
addedBy: humans
kubernetes/k8s.io:
labels:
- color: 0052cc
description: Issues or PRs related to defining who has access to what (e.g. IAM, RBAC, google groups)
name: area/access
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PRs related to the hosting of release artifacts for subprojects
name: area/artifacts
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PRs related to billing
name: area/billing
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issue or PRs related to project infra that runs on a cluster
name: area/cluster-infra
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PRs related to managing k8s clusters to run k8s-infra
name: area/cluster-mgmt
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PRs related to DNS records
name: area/dns
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PRs related to auditing for the Kubernetes project infrastructure
name: area/infra/auditing
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PRs related to Cert Manager
name: area/infra/cert-manager
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PRs related to monitoring of the Kubernetes project infrastructure
name: area/infra/monitoring
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PRs related to Publishing bot
name: area/infra/publishing-bot
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PR related to reliability of the Kubernetes project infrastructure
name: area/infra/reliability
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PR related to prow, build clusters, migrating jobs
name: area/prow
target: both
prowPlugin: label
addedBy: anyone
- color: 0052cc
description: Issues or PRs related to the Release Engineering subproject
name: area/release-eng
target: both
prowPlugin: label
addedBy: anyone
kubernetes/kubernetes:
labels:
- color: 0052cc
description: Indicates an issue on admin area.
name: area/admin
target: issues
addedBy: label
- color: 0052cc
description: Indicates an issue on api area.
name: area/api
target: issues
addedBy: label
- color: 0052cc
description: Issues or PRs related to kubernetes code organization
name: area/code-organization
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to kubernetes conformance tests
name: area/conformance
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to deflaking kubernetes tests
name: area/deflake
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to refactoring the kubernetes e2e test framework
name: area/e2e-test-framework
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to the hyperkube subproject
name: area/hyperkube
target: both
addedBy: label
- color: 0052cc
description: Issues or PRs related to the Release Engineering subproject
name: area/release-eng
previously:
- name: area/release-infra
target: both
addedBy: label
- color: e11d21
description: Indicates a PR which contains merge commits.
name: do-not-merge/contains-merge-commits