From 2872d38e8bcb317413f7a237f3ce081dbb79ca2a Mon Sep 17 00:00:00 2001 From: Dario Tranchitella Date: Wed, 15 Apr 2026 11:03:24 +0200 Subject: [PATCH] feat: dropping support for v1.27 (#1127) Signed-off-by: Dario Tranchitella --- internal/kubeadm/uploadconfig.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/internal/kubeadm/uploadconfig.go b/internal/kubeadm/uploadconfig.go index 439ebe4..e8bbd58 100644 --- a/internal/kubeadm/uploadconfig.go +++ b/internal/kubeadm/uploadconfig.go @@ -85,11 +85,6 @@ func getKubeletConfigmapContent(kubeletConfiguration KubeletConfiguration, patch kc.ClusterDomain = kubeletConfiguration.TenantControlPlaneDomain kc.RotateCertificates = true kc.StaticPodPath = "/etc/kubernetes/manifests" - // TODO(prometherion): drop support of <= v1.27 TCP versions - // a numeric value is required due to strict marshaling - // kubeadm <= v1.27 has a different type for FlushFrequency - // https://github.com/kubernetes/component-base/blob/55b3ab0db0081303695d641b9b43d560bf3f7a65/logs/api/v1/types.go#L42-L45 - kc.Logging.FlushFrequency.SerializeAsString = false // Restore default behaviour so Kubelet will automatically // determine the resolvConf location, as reported in clastix/kamaji#581. kc.ResolverConfig = nil