-
Notifications
You must be signed in to change notification settings - Fork 392
/
release-notes-draft.json
7084 lines (7084 loc) · 328 KB
/
release-notes-draft.json
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
{
"100448": {
"commit": "95bd8b95a76fa1e29eec703f4cd92d5a9daaf39a",
"text": "Changed kubelet logs from `error` to `info` for uncached partitions when using CRI stats provider.",
"markdown": "Changed kubelet logs from `error` to `info` for uncached partitions when using CRI stats provider. ([#100448](https://github.com/kubernetes/kubernetes/pull/100448), [@saschagrunert](https://github.com/saschagrunert))",
"author": "saschagrunert",
"author_url": "https://github.com/saschagrunert",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/100448",
"pr_number": 100448,
"areas": [
"kubelet"
],
"kinds": [
"bug",
"cleanup"
],
"sigs": [
"node"
],
"duplicate_kind": true
},
"112599": {
"commit": "dea3f1a119e997aeae0f503af35dc0804b0fdcd6",
"text": "Added Windows support for InPlace Pod Vertical Scaling feature.",
"markdown": "Added Windows support for InPlace Pod Vertical Scaling feature. ([#112599](https://github.com/kubernetes/kubernetes/pull/112599), [@fabi200123](https://github.com/fabi200123)) [SIG Autoscaling, Node, Scalability, Scheduling and Windows]",
"author": "fabi200123",
"author_url": "https://github.com/fabi200123",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/112599",
"pr_number": 112599,
"areas": [
"test",
"kubelet"
],
"kinds": [
"api-change",
"feature"
],
"sigs": [
"scalability",
"scheduling",
"node",
"autoscaling",
"windows"
],
"feature": true,
"duplicate": true,
"duplicate_kind": true
},
"113374": {
"commit": "9f319c32064f8b72d368df65fde4e37e250f8230",
"text": "Added support for projecting `certificates.k8s.io/v1alpha1` ClusterTrustBundle objects into pods.",
"markdown": "Added support for projecting `certificates.k8s.io/v1alpha1` ClusterTrustBundle objects into pods. ([#113374](https://github.com/kubernetes/kubernetes/pull/113374), [@ahmedtd](https://github.com/ahmedtd))",
"documentation": [
{
"description": "[KEP]",
"url": "https://github.com/kubernetes/enhancements/tree/bddca24910fb349e2eb0ac1c822c77f0f32fe9c6/keps/sig-auth/3257-trust-anchor-sets",
"type": "KEP"
}
],
"author": "ahmedtd",
"author_url": "https://github.com/ahmedtd",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/113374",
"pr_number": 113374,
"areas": [
"test",
"kubelet",
"apiserver",
"code-generation"
],
"kinds": [
"api-change",
"feature"
],
"sigs": [
"storage",
"node",
"api-machinery",
"auth",
"apps",
"testing"
],
"feature": true,
"duplicate": true,
"duplicate_kind": true
},
"114095": {
"commit": "6cbc5dfac6581b1a067dd4caf005dba5ad495d9d",
"text": "`scheduler`: Fixed missing field `apiVersion` from events reported by the taint\nmanager.",
"markdown": "`scheduler`: Fixed missing field `apiVersion` from events reported by the taint\n manager. ([#114095](https://github.com/kubernetes/kubernetes/pull/114095), [@aimuz](https://github.com/aimuz))",
"author": "aimuz",
"author_url": "https://github.com/aimuz",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/114095",
"pr_number": 114095,
"kinds": [
"bug"
],
"sigs": [
"scheduling",
"node",
"apps"
],
"duplicate": true
},
"115702": {
"commit": "4911aad4636ab177333db63297fb4a9a562a8f20",
"text": "Fixed the bug where kubelet couldn't output logs after log file rotated when `kubectl logs POD_NAME -f` is running.",
"markdown": "Fixed the bug where kubelet couldn't output logs after log file rotated when `kubectl logs POD_NAME -f` is running. ([#115702](https://github.com/kubernetes/kubernetes/pull/115702), [@xyz-li](https://github.com/xyz-li))",
"author": "xyz-li",
"author_url": "https://github.com/xyz-li",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/115702",
"pr_number": 115702,
"areas": [
"kubelet"
],
"kinds": [
"bug"
],
"sigs": [
"node"
]
},
"116065": {
"commit": "581552eaf0b4a6689f2a02012804f2780ff7efdf",
"text": "The `matchLabelKeys/mismatchLabelKeys` feature is introduced to the hard/soft `PodAffinity/PodAntiAffinity`.",
"markdown": "The `matchLabelKeys/mismatchLabelKeys` feature is introduced to the hard/soft `PodAffinity/PodAntiAffinity`. ([#116065](https://github.com/kubernetes/kubernetes/pull/116065), [@sanposhiho](https://github.com/sanposhiho))",
"documentation": [
{
"description": "[KEP]",
"url": "https://github.com/kubernetes/enhancements/tree/master/keps/sig-scheduling/3633-matchlabelkeys-to-podaffinity",
"type": "KEP"
}
],
"author": "sanposhiho",
"author_url": "https://github.com/sanposhiho",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/116065",
"pr_number": 116065,
"areas": [
"test",
"code-generation"
],
"kinds": [
"api-change",
"feature"
],
"sigs": [
"scheduling",
"api-machinery",
"apps",
"testing",
"cloud-provider"
],
"feature": true,
"duplicate": true,
"duplicate_kind": true
},
"116252": {
"commit": "f5d7c34b67c4fcdbc004bed5d211ef00b27c9ace",
"text": "Creation of new `CronJob` objects containing `TZ` or `CRON_TZ` in `.spec.schedule`, accidentally enabled in `v1.22`, is now disallowed. Use the `.spec.timeZone` field instead, supported in `v1.25+` clusters in default configurations. See https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#unsupported-timezone-specification for more information.",
"markdown": "Creation of new `CronJob` objects containing `TZ` or `CRON_TZ` in `.spec.schedule`, accidentally enabled in `v1.22`, is now disallowed. Use the `.spec.timeZone` field instead, supported in `v1.25+` clusters in default configurations. See https://kubernetes.io/docs/concepts/workloads/controllers/cron-jobs/#unsupported-timezone-specification for more information. ([#116252](https://github.com/kubernetes/kubernetes/pull/116252), [@soltysh](https://github.com/soltysh))",
"documentation": [
{
"description": "[KEP]",
"url": "https://github.com/kubernetes/enhancements/issues/3140",
"type": "KEP"
}
],
"author": "soltysh",
"author_url": "https://github.com/soltysh",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/116252",
"pr_number": 116252,
"kinds": [
"cleanup",
"api-change",
"deprecation"
],
"sigs": [
"apps"
],
"duplicate_kind": true
},
"116516": {
"commit": "6abff7457e3a722fd217a0a58d1992b4002d496d",
"text": "Added a new `ServiceCIDR` type that allows to dynamically configure the cluster range used to allocate `Service ClusterIPs` addresses.",
"markdown": "Added a new `ServiceCIDR` type that allows to dynamically configure the cluster range used to allocate `Service ClusterIPs` addresses. ([#116516](https://github.com/kubernetes/kubernetes/pull/116516), [@aojea](https://github.com/aojea))",
"documentation": [
{
"description": "[KEP]",
"url": "https://github.com/kubernetes/enhancements/tree/master/keps/sig-network/1880-multiple-service-cidrs",
"type": "KEP"
},
{
"description": "Demo",
"url": "https://gist.github.com/aojea/c20eb117bf1c1214f8bba26c495be9c7",
"type": "external"
},
{
"description": "kubectl apply -f",
"url": "https://gist.githubusercontent.com/aojea/90768935ab71cb31950b6a13078a7e92/raw/99ceac308f2b2658c7313198a39fbe24b155ae68/dual-stack.yaml",
"type": "external"
},
{
"description": "deployment.apps/",
"url": "httpd-deployment created",
"type": "external"
},
{
"description": "Error from server (Invalid): error when creating \"",
"url": "https://gist.githubusercontent.com/aojea/90768935ab71cb31950b6a13078a7e92/raw/99ceac308f2b2658c7313198a39fbe24b155ae68/dual-stack.yaml\": Service \"my-service-v6\" is invalid: spec.ipFamilies[0]: Invalid value: \"IPv6\": not configured on this cluster",
"type": "external"
},
{
"description": "Error from server (Invalid): error when creating \"",
"url": "https://gist.githubusercontent.com/aojea/90768935ab71cb31950b6a13078a7e92/raw/99ceac308f2b2658c7313198a39fbe24b155ae68/dual-stack.yaml\": Service \"my-service-require-dual\" is invalid: spec.ipFamilyPolicy: Invalid value: \"RequireDualStack\": this cluster is not configured for dual-stack services",
"type": "external"
}
],
"author": "aojea",
"author_url": "https://github.com/aojea",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/116516",
"pr_number": 116516,
"areas": [
"test",
"apiserver",
"kubectl",
"code-generation"
],
"kinds": [
"api-change",
"feature"
],
"sigs": [
"network",
"api-machinery",
"auth",
"apps",
"cli",
"testing"
],
"feature": true,
"duplicate": true,
"duplicate_kind": true
},
"116752": {
"commit": "d7b7a85fbc0b3831cbc6a750a47dfdcdf777d519",
"text": "Changed `kubectl help` to display basic details for subcommands from plugins.",
"markdown": "Changed `kubectl help` to display basic details for subcommands from plugins. ([#116752](https://github.com/kubernetes/kubernetes/pull/116752), [@xvzf](https://github.com/xvzf))",
"author": "xvzf",
"author_url": "https://github.com/xvzf",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/116752",
"pr_number": 116752,
"areas": [
"kubectl"
],
"kinds": [
"feature"
],
"sigs": [
"cli"
],
"feature": true
},
"116803": {
"commit": "9c5698f5146bb335d312a802ec5a7baf2bfa6bf0",
"text": "Migrated the `volumebinding scheduler plugins` to use [contextual logging](https://k8s.io/docs/concepts/cluster-administration/system-logs/#contextual-logging).",
"markdown": "Migrated the `volumebinding scheduler plugins` to use [contextual logging](https://k8s.io/docs/concepts/cluster-administration/system-logs/#contextual-logging). ([#116803](https://github.com/kubernetes/kubernetes/pull/116803), [@mengjiao-liu](https://github.com/mengjiao-liu))",
"documentation": [
{
"description": "[KEP]",
"url": "https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/3077-contextual-logging",
"type": "KEP"
}
],
"author": "mengjiao-liu",
"author_url": "https://github.com/mengjiao-liu",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/116803",
"pr_number": 116803,
"areas": [
"logging"
],
"kinds": [
"feature"
],
"sigs": [
"scheduling",
"storage",
"instrumentation"
],
"feature": true,
"duplicate": true
},
"116884": {
"commit": "89b4153d4d697e02e3be954cc0df1011eb7f166a",
"text": "Migrated the `nodevolumelimits` scheduler plugin to use [contextual logging](https://k8s.io/docs/concepts/cluster-administration/system-logs/#contextual-logging).",
"markdown": "Migrated the `nodevolumelimits` scheduler plugin to use [contextual logging](https://k8s.io/docs/concepts/cluster-administration/system-logs/#contextual-logging). ([#116884](https://github.com/kubernetes/kubernetes/pull/116884), [@mengjiao-liu](https://github.com/mengjiao-liu))",
"documentation": [
{
"description": "[KEP]",
"url": "https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/3077-contextual-logging",
"type": "KEP"
}
],
"author": "mengjiao-liu",
"author_url": "https://github.com/mengjiao-liu",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/116884",
"pr_number": 116884,
"areas": [
"test",
"logging"
],
"kinds": [
"feature"
],
"sigs": [
"scheduling",
"storage",
"node",
"instrumentation",
"testing"
],
"feature": true,
"duplicate": true
},
"116897": {
"commit": "addc0391e779bbcceebc56043c8093206cfda38c",
"text": "Graduated the following kubelet resource metrics to **general availability**:\n- `container_cpu_usage_seconds_total`\n- `container_memory_working_set_bytes`\n- `container_start_time_seconds`\n- `node_cpu_usage_seconds_total`\n- `node_memory_working_set_bytes`\n- `pod_cpu_usage_seconds_total`\n- `pod_memory_working_set_bytes`\n- `resource_scrape_error`\n\nDeprecated (renamed) `scrape_error` in favor of `resource_scrape_error`",
"markdown": "Graduated the following kubelet resource metrics to **general availability**:\n - `container_cpu_usage_seconds_total`\n - `container_memory_working_set_bytes`\n - `container_start_time_seconds`\n - `node_cpu_usage_seconds_total`\n - `node_memory_working_set_bytes`\n - `pod_cpu_usage_seconds_total`\n - `pod_memory_working_set_bytes`\n - `resource_scrape_error`\n \n Deprecated (renamed) `scrape_error` in favor of `resource_scrape_error` ([#116897](https://github.com/kubernetes/kubernetes/pull/116897), [@Richabanker](https://github.com/Richabanker)) [SIG Architecture, Instrumentation, Node and Testing]",
"documentation": [
{
"description": "[KEP]",
"url": "https://kep.k8s.io/727",
"type": "external"
}
],
"author": "Richabanker",
"author_url": "https://github.com/Richabanker",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/116897",
"pr_number": 116897,
"areas": [
"test",
"kubelet",
"conformance",
"e2e-test-framework",
"stable-metrics"
],
"kinds": [
"feature"
],
"sigs": [
"node",
"instrumentation",
"testing",
"architecture"
],
"feature": true,
"duplicate": true
},
"116938": {
"commit": "78b34aa8fc2cef93ad74d592e256cf424430b439",
"text": "Fixed inconsistency in the calculation of number of nodes that have an image, which affect the scoring in the `ImageLocality` plugin.",
"markdown": "Fixed inconsistency in the calculation of number of nodes that have an image, which affect the scoring in the `ImageLocality` plugin. ([#116938](https://github.com/kubernetes/kubernetes/pull/116938), [@olderTaoist](https://github.com/olderTaoist))",
"author": "olderTaoist",
"author_url": "https://github.com/olderTaoist",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/116938",
"pr_number": 116938,
"kinds": [
"bug"
],
"sigs": [
"scheduling"
]
},
"117326": {
"commit": "4f303d123659fb3aac2108f8439c7f43dde438b5",
"text": "```\n\n#### Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:\n\n\u003c!--\nThis section can be blank if this pull request does not require a release note.\n\nWhen adding links which point to resources within git repositories, like\nKEPs or supporting documentation, please reference a specific commit and avoid\nlinking directly to the master branch. This ensures that links reference a\nspecific point in time, rather than a document that may change over time.\n\nSee here for guidance on getting permanent links to files: https://help.github.com/en/articles/getting-permanent-links-to-files\n\nPlease use the following format for linking documentation:\n- [KEP]: \u003clink\u003e\n- [Usage]: \u003clink\u003e\n- [Other doc]: \u003clink\u003e\n--\u003e",
"markdown": "```\n \n #### Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:\n \n \u003c!--\n This section can be blank if this pull request does not require a release note.\n \n When adding links which point to resources within git repositories, like\n KEPs or supporting documentation, please reference a specific commit and avoid\n linking directly to the master branch. This ensures that links reference a\n specific point in time, rather than a document that may change over time.\n \n See here for guidance on getting permanent links to files: https://help.github.com/en/articles/getting-permanent-links-to-files\n \n Please use the following format for linking documentation:\n - [KEP]: \u003clink\u003e\n - [Usage]: \u003clink\u003e\n - [Other doc]: \u003clink\u003e\n --\u003e ([#117326](https://github.com/kubernetes/kubernetes/pull/117326), [@akhilerm](https://github.com/akhilerm)) [SIG Node]",
"author": "akhilerm",
"author_url": "https://github.com/akhilerm",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/117326",
"pr_number": 117326,
"areas": [
"dependency"
],
"kinds": [
"cleanup"
],
"sigs": [
"node"
],
"do_not_publish": true
},
"117411": {
"commit": "52cba2d8d8be6a6ceec840a31d4a762a44967ce4",
"text": "Added multiplication functionality to `Quantity`.",
"markdown": "Added multiplication functionality to `Quantity`. ([#117411](https://github.com/kubernetes/kubernetes/pull/117411), [@tenzen-y](https://github.com/tenzen-y))",
"author": "tenzen-y",
"author_url": "https://github.com/tenzen-y",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/117411",
"pr_number": 117411,
"kinds": [
"feature"
],
"sigs": [
"api-machinery"
],
"feature": true
},
"117502": {
"commit": "61d87fdb2e6c656f3d7123570c78ada5dca59079",
"text": "Added `kubectl node drain` helper callbacks `OnPodDeletionOrEvictionStarted`\nand `OnPodDeletionOrEvictionFailed`; people extending `kubectl` can use these\nnew callbacks for more granularity. Deprecated the `OnPodDeletedOrEvicted`\nnode drain helper callback.",
"markdown": "Added `kubectl node drain` helper callbacks `OnPodDeletionOrEvictionStarted`\n and `OnPodDeletionOrEvictionFailed`; people extending `kubectl` can use these\n new callbacks for more granularity. Deprecated the `OnPodDeletedOrEvicted`\n node drain helper callback. ([#117502](https://github.com/kubernetes/kubernetes/pull/117502), [@adilGhaffarDev](https://github.com/adilGhaffarDev))",
"author": "adilGhaffarDev",
"author_url": "https://github.com/adilGhaffarDev",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/117502",
"pr_number": 117502,
"areas": [
"kubectl"
],
"kinds": [
"feature"
],
"sigs": [
"cli"
],
"feature": true
},
"117503": {
"commit": "a607dfb3ff3c70c8df77a90486fb9930cfb2a94d",
"text": "In-tree cloud providers are now switched off by default. Please use `DisableCloudProviders` and `DisableKubeletCloudCredentialProvider` feature flags if you still need this functionality.",
"markdown": "In-tree cloud providers are now switched off by default. Please use `DisableCloudProviders` and `DisableKubeletCloudCredentialProvider` feature flags if you still need this functionality. ([#117503](https://github.com/kubernetes/kubernetes/pull/117503), [@dims](https://github.com/dims))",
"author": "dims",
"author_url": "https://github.com/dims",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/117503",
"pr_number": 117503,
"areas": [
"test",
"apiserver",
"provider/gcp"
],
"kinds": [
"feature"
],
"sigs": [
"api-machinery",
"testing",
"cloud-provider"
],
"feature": true,
"duplicate": true
},
"117615": {
"commit": "e1824b6a4777bb9f9b936d11e066190841011ac7",
"text": "Empty values are no longer assigned to undefined resources (CPU or memory) when storing the resources allocated to the pod in checkpoint.",
"markdown": "Empty values are no longer assigned to undefined resources (CPU or memory) when storing the resources allocated to the pod in checkpoint. ([#117615](https://github.com/kubernetes/kubernetes/pull/117615), [@aheng-ch](https://github.com/aheng-ch))",
"author": "aheng-ch",
"author_url": "https://github.com/aheng-ch",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/117615",
"pr_number": 117615,
"areas": [
"kubelet"
],
"kinds": [
"bug"
],
"sigs": [
"node"
]
},
"117720": {
"commit": "cd91351dff037d9b50a09ddb4ee426bdfff1d877",
"text": "The `kube-scheduler` `selectorSpread` plugin has been removed, please use the `podTopologySpread` plugin instead.",
"markdown": "The `kube-scheduler` `selectorSpread` plugin has been removed, please use the `podTopologySpread` plugin instead. ([#117720](https://github.com/kubernetes/kubernetes/pull/117720), [@kerthcet](https://github.com/kerthcet))",
"author": "kerthcet",
"author_url": "https://github.com/kerthcet",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/117720",
"pr_number": 117720,
"kinds": [
"cleanup",
"api-change",
"feature"
],
"sigs": [
"scheduling"
],
"feature": true,
"duplicate_kind": true,
"action_required": true
},
"117977": {
"commit": "322acc0f8850e6c27995be937f297c29b1888e68",
"text": "The `horizontalpodautoscaling` and `clusterrole-aggregation` controllers now assume the `autoscaling/v1` and `rbac.authorization.k8s.io/v1` APIs are available. If you disable those APIs and do not want to run those controllers, exclude them by passing `--controllers=-horizontalpodautoscaling` or `--controllers=-clusterrole-aggregation` to `kube-controller-manager`.",
"markdown": "The `horizontalpodautoscaling` and `clusterrole-aggregation` controllers now assume the `autoscaling/v1` and `rbac.authorization.k8s.io/v1` APIs are available. If you disable those APIs and do not want to run those controllers, exclude them by passing `--controllers=-horizontalpodautoscaling` or `--controllers=-clusterrole-aggregation` to `kube-controller-manager`. ([#117977](https://github.com/kubernetes/kubernetes/pull/117977), [@liggitt](https://github.com/liggitt)) [SIG API Machinery and Cloud Provider]",
"author": "liggitt",
"author_url": "https://github.com/liggitt",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/117977",
"pr_number": 117977,
"areas": [
"cloudprovider"
],
"kinds": [
"cleanup"
],
"sigs": [
"api-machinery",
"cloud-provider"
],
"duplicate": true
},
"117992": {
"commit": "7407f36b4b8937f982def35dd99b5647fc5245c5",
"text": "Fixed an issue with the `garbagecollection` controller registering duplicate event handlers if discovery requests failed.",
"markdown": "Fixed an issue with the `garbagecollection` controller registering duplicate event handlers if discovery requests failed. ([#117992](https://github.com/kubernetes/kubernetes/pull/117992), [@liggitt](https://github.com/liggitt))",
"author": "liggitt",
"author_url": "https://github.com/liggitt",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/117992",
"pr_number": 117992,
"kinds": [
"bug"
],
"sigs": [
"api-machinery",
"apps"
],
"duplicate": true
},
"118146": {
"commit": "b5ba899dfa365cc5262f45bf6227a88c97bdb143",
"text": "`kube-proxy` now reports its health more accurately in dual-stack clusters when there are problems with only one IP family.",
"markdown": "`kube-proxy` now reports its health more accurately in dual-stack clusters when there are problems with only one IP family. ([#118146](https://github.com/kubernetes/kubernetes/pull/118146), [@aroradaman](https://github.com/aroradaman))",
"author": "aroradaman",
"author_url": "https://github.com/aroradaman",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118146",
"pr_number": 118146,
"areas": [
"kube-proxy",
"ipvs"
],
"kinds": [
"bug"
],
"sigs": [
"network",
"windows"
],
"duplicate": true
},
"118189": {
"commit": "10a252aa543e0e15e1d4b1ba640d82055a44f082",
"text": "Fixed a concurrent map access in `TopologyCache`'s `HasPopulatedHints` method.",
"markdown": "Fixed a concurrent map access in `TopologyCache`'s `HasPopulatedHints` method. ([#118189](https://github.com/kubernetes/kubernetes/pull/118189), [@Miciah](https://github.com/Miciah))",
"author": "Miciah",
"author_url": "https://github.com/Miciah",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118189",
"pr_number": 118189,
"kinds": [
"bug"
],
"sigs": [
"network",
"apps"
],
"duplicate": true
},
"118299": {
"commit": "3c94af73e1b08eb2a12208c94fe01ad22b08000e",
"text": "List of metric labels can now be configured by supplying a manifest using the `--allow-metric-labels-manifest` flag.",
"markdown": "List of metric labels can now be configured by supplying a manifest using the `--allow-metric-labels-manifest` flag. ([#118299](https://github.com/kubernetes/kubernetes/pull/118299), [@rexagod](https://github.com/rexagod))",
"documentation": [
{
"description": "[KEP]",
"url": "https://github.com/kubernetes/enhancements/tree/master/keps/sig-instrumentation/2305-metrics-cardinality-enforcement",
"type": "KEP"
}
],
"author": "rexagod",
"author_url": "https://github.com/rexagod",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118299",
"pr_number": 118299,
"areas": [
"dependency"
],
"kinds": [
"feature"
],
"sigs": [
"instrumentation",
"architecture"
],
"feature": true,
"duplicate": true
},
"118455": {
"commit": "1acd489dca47a4be0301330cbfcf4e8f9d98f7c0",
"text": "Improved memory usage of `kube-controller-manager` by dropping the `.metadata.managedFields` field that `kube-controller-manager` doesn't require.",
"markdown": "Improved memory usage of `kube-controller-manager` by dropping the `.metadata.managedFields` field that `kube-controller-manager` doesn't require. ([#118455](https://github.com/kubernetes/kubernetes/pull/118455), [@linxiulei](https://github.com/linxiulei))",
"author": "linxiulei",
"author_url": "https://github.com/linxiulei",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118455",
"pr_number": 118455,
"areas": [
"code-generation"
],
"kinds": [
"cleanup"
],
"sigs": [
"api-machinery",
"cloud-provider"
],
"duplicate": true
},
"118463": {
"commit": "9aa04752e7b0ca01f8bb774260592e0fa735eda7",
"text": "```\n\n#### Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.:",
"markdown": "```\n \n #### Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.: ([#118463](https://github.com/kubernetes/kubernetes/pull/118463), [@testwill](https://github.com/testwill)) [SIG Network, Node, Scheduling and Testing]",
"author": "testwill",
"author_url": "https://github.com/testwill",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118463",
"pr_number": 118463,
"areas": [
"test",
"network-policy"
],
"kinds": [
"cleanup"
],
"sigs": [
"network",
"scheduling",
"node",
"testing"
],
"duplicate": true,
"do_not_publish": true
},
"118568": {
"commit": "4fd8bd997501021627d44ec256b73446f732ad5e",
"text": "`kubelet` will now expose latency metrics of different stages of the node startup.",
"markdown": "`kubelet` will now expose latency metrics of different stages of the node startup. ([#118568](https://github.com/kubernetes/kubernetes/pull/118568), [@qiutongs](https://github.com/qiutongs))",
"author": "qiutongs",
"author_url": "https://github.com/qiutongs",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118568",
"pr_number": 118568,
"areas": [
"kubelet"
],
"kinds": [
"feature"
],
"sigs": [
"scalability",
"node",
"instrumentation"
],
"feature": true,
"duplicate": true
},
"118598": {
"commit": "fa14f7004771cdbfd4f4bf0fc584e0b4a35e4ccb",
"text": "Use of secret-based service account tokens now adds an `authentication.k8s.io/legacy-token-autogenerated-secret` or `authentication.k8s.io/legacy-token-manual-secret` audit annotation containing the name of the secret used.",
"markdown": "Use of secret-based service account tokens now adds an `authentication.k8s.io/legacy-token-autogenerated-secret` or `authentication.k8s.io/legacy-token-manual-secret` audit annotation containing the name of the secret used. ([#118598](https://github.com/kubernetes/kubernetes/pull/118598), [@yuanchen8911](https://github.com/yuanchen8911)) [SIG Auth, Instrumentation and Testing]",
"author": "yuanchen8911",
"author_url": "https://github.com/yuanchen8911",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118598",
"pr_number": 118598,
"areas": [
"test"
],
"kinds": [
"feature"
],
"sigs": [
"auth",
"instrumentation",
"testing"
],
"feature": true,
"duplicate": true
},
"118619": {
"commit": "19deb04a9079e01e0f9e04cd8f94a1173694916b",
"text": "Dynamic resource allocation: will now avoid creating a new gRPC connection for every call of prepare/unprepare resource(s).",
"markdown": "Dynamic resource allocation: will now avoid creating a new gRPC connection for every call of prepare/unprepare resource(s). ([#118619](https://github.com/kubernetes/kubernetes/pull/118619), [@TommyStarK](https://github.com/TommyStarK))",
"author": "TommyStarK",
"author_url": "https://github.com/TommyStarK",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118619",
"pr_number": 118619,
"areas": [
"kubelet"
],
"kinds": [
"cleanup"
],
"sigs": [
"node"
]
},
"118647": {
"commit": "b4fd1626647ddde8b556217314f5bae6047af2d8",
"text": "Added `CAP_NET_RAW` to netadmin debug profile and removed privileges when debugging nodes.",
"markdown": "Added `CAP_NET_RAW` to netadmin debug profile and removed privileges when debugging nodes. ([#118647](https://github.com/kubernetes/kubernetes/pull/118647), [@mochizuki875](https://github.com/mochizuki875))",
"documentation": [
{
"url": "https://github.com/kubernetes/enhancements/tree/master/keps/sig-cli/1441-kubectl-debug#profile-netadmin",
"type": "KEP"
}
],
"author": "mochizuki875",
"author_url": "https://github.com/mochizuki875",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118647",
"pr_number": 118647,
"areas": [
"test",
"kubectl"
],
"kinds": [
"bug"
],
"sigs": [
"cli",
"testing"
],
"duplicate": true
},
"118653": {
"commit": "f852d7fead3446112d4dc8acd29869a860a11ff5",
"text": "Go API: the `ResourceRequirements` struct was replaced with `VolumeResourceRequirements` for use with volumes.",
"markdown": "Go API: the `ResourceRequirements` struct was replaced with `VolumeResourceRequirements` for use with volumes. ([#118653](https://github.com/kubernetes/kubernetes/pull/118653), [@pohly](https://github.com/pohly))",
"author": "pohly",
"author_url": "https://github.com/pohly",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118653",
"pr_number": 118653,
"areas": [
"test",
"kubelet",
"code-generation",
"e2e-test-framework"
],
"kinds": [
"cleanup",
"api-change"
],
"sigs": [
"scheduling",
"storage",
"node",
"api-machinery",
"auth",
"apps",
"testing"
],
"duplicate": true,
"duplicate_kind": true
},
"118704": {
"commit": "3d77b95bcfd79299347cf8ea74540a22bda08f72",
"text": "Updated the CRI-O socket path, so users who configure kubelet to use a location like `/run/crio/crio.sock` don't see strange behaviour from CRI stats provider.",
"markdown": "Updated the CRI-O socket path, so users who configure kubelet to use a location like `/run/crio/crio.sock` don't see strange behaviour from CRI stats provider. ([#118704](https://github.com/kubernetes/kubernetes/pull/118704), [@dgl](https://github.com/dgl))",
"author": "dgl",
"author_url": "https://github.com/dgl",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118704",
"pr_number": 118704,
"areas": [
"kubelet"
],
"kinds": [
"bug"
],
"sigs": [
"node"
]
},
"118705": {
"commit": "57c7b666c42d2188a8486ee383ba2039bceb9830",
"text": "Forbidden sysctls for pod sharing the respective namespaces with the host are now checked when creating or updating pods without such sysctls.",
"markdown": "Forbidden sysctls for pod sharing the respective namespaces with the host are now checked when creating or updating pods without such sysctls. ([#118705](https://github.com/kubernetes/kubernetes/pull/118705), [@pacoxu](https://github.com/pacoxu))",
"author": "pacoxu",
"author_url": "https://github.com/pacoxu",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118705",
"pr_number": 118705,
"areas": [
"kubelet",
"dependency"
],
"kinds": [
"bug"
],
"sigs": [
"node",
"apps"
],
"duplicate": true
},
"118709": {
"commit": "5d94b2a8e8db3a8e10db792ee4d29df0640183f1",
"text": "None",
"markdown": "None ([#118709](https://github.com/kubernetes/kubernetes/pull/118709), [@ty-dc](https://github.com/ty-dc)) [SIG Network]",
"author": "ty-dc",
"author_url": "https://github.com/ty-dc",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118709",
"pr_number": 118709,
"kinds": [
"cleanup"
],
"sigs": [
"network"
],
"do_not_publish": true
},
"118748": {
"commit": "d486180eb050c756d9add30377980eced146ffa1",
"text": "Improved handling of jsonpath expressions for `kubectl wait --for`. It is now possible to use simple filter expressions which match on a field's content.",
"markdown": "Improved handling of jsonpath expressions for `kubectl wait --for`. It is now possible to use simple filter expressions which match on a field's content. ([#118748](https://github.com/kubernetes/kubernetes/pull/118748), [@andreaskaris](https://github.com/andreaskaris))",
"author": "andreaskaris",
"author_url": "https://github.com/andreaskaris",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118748",
"pr_number": 118748,
"areas": [
"test",
"kubectl"
],
"kinds": [
"bug"
],
"sigs": [
"cli",
"testing"
],
"duplicate": true
},
"118760": {
"commit": "1c8f88d4b688aabeb8fb24e790756a90bae6844a",
"text": "Added `UserNamespacesPodSecurityStandards` feature gate to enable user namespace support for Pod Security Standards.\nEnabling this feature will modify all Pod Security Standard rules to allow setting: `spec[.*].securityContext.[runAsNonRoot,runAsUser]`.\nThis feature gate should only be enabled if all nodes in the cluster support the user namespace feature and have it enabled.\nThe feature gate will not graduate or be enabled by default in future Kubernetes releases.",
"markdown": "Added `UserNamespacesPodSecurityStandards` feature gate to enable user namespace support for Pod Security Standards.\n Enabling this feature will modify all Pod Security Standard rules to allow setting: `spec[.*].securityContext.[runAsNonRoot,runAsUser]`.\n This feature gate should only be enabled if all nodes in the cluster support the user namespace feature and have it enabled.\n The feature gate will not graduate or be enabled by default in future Kubernetes releases. ([#118760](https://github.com/kubernetes/kubernetes/pull/118760), [@saschagrunert](https://github.com/saschagrunert)) [SIG API Machinery, Auth, Node and Release]",
"documentation": [
{
"description": "KEP",
"url": "https://github.com/kubernetes/enhancements/issues/127",
"type": "KEP"
}
],
"author": "saschagrunert",
"author_url": "https://github.com/saschagrunert",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118760",
"pr_number": 118760,
"areas": [
"apiserver",
"release-eng",
"code-generation"
],
"kinds": [
"api-change",
"feature"
],
"sigs": [
"node",
"api-machinery",
"auth",
"release"
],
"feature": true,
"duplicate": true,
"duplicate_kind": true
},
"118846": {
"commit": "a7f8c2f787a7bd85f92eea27cfa4716b49a93955",
"text": "`kubelet` now allows pods to use the `net.ipv4.tcp_keepalive_time` sysctl by default\nand the minimal kernel version is 4.5; Pod Security Admission allows this sysctl\nin `v1.29+` versions of the baseline and restricted policies.",
"markdown": "`kubelet` now allows pods to use the `net.ipv4.tcp_keepalive_time` sysctl by default\n and the minimal kernel version is 4.5; Pod Security Admission allows this sysctl\n in `v1.29+` versions of the baseline and restricted policies. ([#118846](https://github.com/kubernetes/kubernetes/pull/118846), [@cyclinder](https://github.com/cyclinder))",
"author": "cyclinder",
"author_url": "https://github.com/cyclinder",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118846",
"pr_number": 118846,
"areas": [
"kubelet"
],
"kinds": [
"feature"
],
"sigs": [
"network",
"node",
"auth"
],
"feature": true,
"duplicate": true
},
"118923": {
"commit": "312dc127a90190afd3eca0855338dbd4a0a01b79",
"text": "The `volume_zone` plugin will consider `beta` labels as `GA` labels during the scheduling\nprocess. Therefore, if the values of the labels are the same, PVs with `beta` labels\ncan also be scheduled to nodes with `GA` labels.",
"markdown": "The `volume_zone` plugin will consider `beta` labels as `GA` labels during the scheduling\n process. Therefore, if the values of the labels are the same, PVs with `beta` labels\n can also be scheduled to nodes with `GA` labels. ([#118923](https://github.com/kubernetes/kubernetes/pull/118923), [@AxeZhan](https://github.com/AxeZhan))",
"author": "AxeZhan",
"author_url": "https://github.com/AxeZhan",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118923",
"pr_number": 118923,
"kinds": [
"feature"
],
"sigs": [
"scheduling"
],
"feature": true
},
"118942": {
"commit": "963400f1a2a1fc6c8650115c0372366ad3429b68",
"text": "`kubectl prune v2`: Switched annotation from `contains-group-resources` to `contains-group-kinds`,\nbecause this is what we defined in the KEP and is clearer to end-users. Although the functionality is\nin `alpha`, we will recognize the prior annotation. This migration support will be removed in `beta`/`GA`.",
"markdown": "`kubectl prune v2`: Switched annotation from `contains-group-resources` to `contains-group-kinds`,\n because this is what we defined in the KEP and is clearer to end-users. Although the functionality is\n in `alpha`, we will recognize the prior annotation. This migration support will be removed in `beta`/`GA`. ([#118942](https://github.com/kubernetes/kubernetes/pull/118942), [@justinsb](https://github.com/justinsb))",
"author": "justinsb",
"author_url": "https://github.com/justinsb",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118942",
"pr_number": 118942,
"areas": [
"kubectl"
],
"kinds": [
"bug"
],
"sigs": [
"cli"
]
},
"118950": {
"commit": "95bb02943deb22f738792fcbbcd2c8251c13960c",
"text": "\"NONE\"",
"markdown": "\"NONE\" ([#118950](https://github.com/kubernetes/kubernetes/pull/118950), [@ndixita](https://github.com/ndixita)) [SIG Node and Testing]",
"author": "ndixita",
"author_url": "https://github.com/ndixita",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118950",
"pr_number": 118950,
"areas": [
"test"
],
"kinds": [
"cleanup"
],
"sigs": [
"node",
"testing"
],
"duplicate": true,
"do_not_publish": true
},
"118996": {
"commit": "8703ca2413f9cd55147c59588ede1b35bd48beda",
"text": "Kubernetes is now built with Go `1.21.0`.",
"markdown": "Kubernetes is now built with Go `1.21.0`. ([#118996](https://github.com/kubernetes/kubernetes/pull/118996), [@cpanato](https://github.com/cpanato))",
"author": "cpanato",
"author_url": "https://github.com/cpanato",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/118996",
"pr_number": 118996,
"areas": [
"test",
"release-eng"
],
"kinds": [
"feature"
],
"sigs": [
"testing",
"release"
],
"feature": true,
"duplicate": true
},
"119026": {
"commit": "f6ba25fdbda1f6159ad63dcbb16f394b98d3a2c8",
"text": "A new sleep action for the `PreStop` lifecycle hook was added, allowing containers to pause for a specified duration before termination.",
"markdown": "A new sleep action for the `PreStop` lifecycle hook was added, allowing containers to pause for a specified duration before termination. ([#119026](https://github.com/kubernetes/kubernetes/pull/119026), [@AxeZhan](https://github.com/AxeZhan))",
"documentation": [
{
"description": "detailed KEP",
"url": "https://github.com/kubernetes/enhancements/blob/master/keps/sig-node/3960-pod-lifecycle-sleep-action/README.md",
"type": "KEP"
}
],
"author": "AxeZhan",
"author_url": "https://github.com/AxeZhan",
"pr_url": "https://github.com/kubernetes/kubernetes/pull/119026",
"pr_number": 119026,
"areas": [
"test",
"kubelet",
"code-generation"
],
"kinds": [
"api-change",
"feature"
],
"sigs": [
"node",
"api-machinery",
"apps",
"testing"
],
"feature": true,
"duplicate": true,
"duplicate_kind": true
},
"119049": {
"commit": "224087abfa0d0dc25f2c6c8e86cb617d0430e908",
"text": "Added a new scheduler metric, `pod_scheduling_sli_duration_seconds`, and started the deprecation for `pod_scheduling_duration_seconds`.",
"markdown": "Added a new scheduler metric, `pod_scheduling_sli_duration_seconds`, and started the deprecation for `pod_scheduling_duration_seconds`. ([#119049](https://github.com/kubernetes/kubernetes/pull/119049), [@helayoty](https://github.com/helayoty))",