From 08bd33e0dc1f844453ea562b8f83de63ff08305c Mon Sep 17 00:00:00 2001 From: Natasha Sarkar Date: Wed, 20 Aug 2025 19:14:59 +0000 Subject: [PATCH] clean up outdated in-place pod resize todo --- pkg/kubelet/kuberuntime/helpers_linux.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/kubelet/kuberuntime/helpers_linux.go b/pkg/kubelet/kuberuntime/helpers_linux.go index 4f56d62b82e..a3b1ab2c300 100644 --- a/pkg/kubelet/kuberuntime/helpers_linux.go +++ b/pkg/kubelet/kuberuntime/helpers_linux.go @@ -27,8 +27,6 @@ import ( ) // sharesToMilliCPU converts CpuShares (cpu.shares) to milli-CPU value -// TODO(vinaykul,InPlacePodVerticalScaling): Address issue that sets min req/limit to 2m/10m before beta -// See: https://github.com/kubernetes/kubernetes/pull/102884#discussion_r662552642 func sharesToMilliCPU(shares int64) int64 { milliCPU := int64(0) if shares >= int64(cm.MinShares) {