From bfbd38c799186a8754f04db1df7d79464fc45df4 Mon Sep 17 00:00:00 2001 From: Sreeram Venkitesh Date: Thu, 17 Oct 2024 22:10:35 +0530 Subject: [PATCH] wordsmithing --- _posts/2024-10-13-update.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/2024-10-13-update.md b/_posts/2024-10-13-update.md index 2aec27d..a74ccb7 100644 --- a/_posts/2024-10-13-update.md +++ b/_posts/2024-10-13-update.md @@ -15,7 +15,7 @@ SIG-Release is [planning to phase out artifacts for some architectures](https:// **Next Deadline: Docs placeholder PRs deadline, October 24** -The enhancements freeze was last week and we have a total of 60 KEPs tracked for v1.32. 9 enhancements did not making the cut for the enhancements freeze and 9 were deferred. Coming up next is the deadline for getting your docs placeholder PRs open, on 24th of October. If your KEP is tracked for v1.32 and if you have updates to the docs, don't forget to open your PRs in time! +The enhancements freeze was last week and we have a total of 60 KEPs tracked for v1.32. 9 enhancements did not make the cut for the enhancements freeze and 9 were deferred. Coming up next is the deadline for getting your docs placeholder PRs open, on 24th of October. If your KEP is tracked for v1.32 and if you have updates to the docs, don't forget to open your PRs in time! The patch releases planned for October [have been moved](https://groups.google.com/a/kubernetes.io/g/dev/c/ycnFVQwOlz8) to Tuesday, October 22, 2024. @@ -23,7 +23,7 @@ The patch releases planned for October [have been moved](https://groups.google.c ### [#127878 [scheduler] calculate pod requests resources with sidecar containers](https://github.com/kubernetes/kubernetes/pull/127878) -This PR updates the scheduler scoring process to consider the resource requests of existing sidecar containers when scheduling Pods. As per the [sidecar containers KEP](https://github.com/kubernetes/enhancements/blob/master/keps/sig-node/753-sidecar-containers/README.md#resources-calculation-for-scheduling-and-pod-admission), resources calculations for scheduling pods with sidecars is supposed to be: `Max(Max( each InitContainerUse ), Sum(Sidecar Containers) + Sum(Containers))`, but existing scheduler logic was using `Max(RegularContainers, InitContainers)` to calculate resources instead. +This PR updates the scheduler scoring process to consider the resource requests of existing sidecar containers when scheduling Pods. As per the [sidecar containers KEP](https://github.com/kubernetes/enhancements/blob/master/keps/sig-node/753-sidecar-containers/README.md#resources-calculation-for-scheduling-and-pod-admission), resources calculations for scheduling pods with sidecars is supposed to be: `Max(Max( each InitContainerUse ), Sum(Sidecar Containers) + Sum(Containers))`, but existing scheduler logic was using `Max(RegularContainers, InitContainers)` to calculate resources instead. This PR updates this logic. ## KEP of the Week