From 46c1406361fa692add817032264f69ed7b640ca2 Mon Sep 17 00:00:00 2001 From: Tom Wieczorek Date: Mon, 2 Oct 2023 10:55:07 +0200 Subject: [PATCH] Update kubernetes pause image to v3.9, for real This fixes the oversight of bumping the pause image version _only_ on Windows. Fixes: 5b7efadc3 ("Update kubernetes pause image to v3.9") Signed-off-by: Tom Wieczorek --- pkg/constant/constant_posix.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/constant/constant_posix.go b/pkg/constant/constant_posix.go index a89cff326d1e..56a5f14b0022 100644 --- a/pkg/constant/constant_posix.go +++ b/pkg/constant/constant_posix.go @@ -25,7 +25,7 @@ const ( KubeletVolumePluginDir = "/usr/libexec/k0s/kubelet-plugins/volume/exec" KineSocket = "kine/kine.sock:2379" KubePauseContainerImage = "registry.k8s.io/pause" - KubePauseContainerImageVersion = "3.8" + KubePauseContainerImageVersion = "3.9" K0sConfigPathDefault = "/etc/k0s/k0s.yaml" RuntimeConfigPathDefault = "/run/k0s/k0s.yaml" )