diff --git a/libimage/manifests/manifests_test.go b/libimage/manifests/manifests_test.go index e29c90772..984058c57 100644 --- a/libimage/manifests/manifests_test.go +++ b/libimage/manifests/manifests_test.go @@ -51,12 +51,12 @@ type listPtr = *list const ( listImageName = "foo" - otherListImage = "docker://k8s.gcr.io/pause:3.1" + otherListImage = "docker://registry.k8s.io/pause:3.1" otherListDigest = "sha256:f78411e19d84a252e53bff71a4407a5686c46983a2c2eeed83929b888179acea" otherListAmd64Digest = "sha256:59eec8837a4d942cc19a52b8c09ea75121acc38114a2c68b98983ce9356b8610" otherListArm64Digest = "sha256:f365626a556e58189fc21d099fc64603db0f440bff07f77c740989515c544a39" otherListPpc64Digest = "sha256:bcf9771c0b505e68c65440474179592ffdfa98790eb54ffbf129969c5e429990" - otherListInstanceDigest = "docker://k8s.gcr.io/pause@sha256:f365626a556e58189fc21d099fc64603db0f440bff07f77c740989515c544a39" + otherListInstanceDigest = "docker://registry.k8s.io/pause@sha256:f365626a556e58189fc21d099fc64603db0f440bff07f77c740989515c544a39" ) func TestSaveLoad(t *testing.T) { diff --git a/pkg/config/config_test.go b/pkg/config/config_test.go index 044c5ad0e..6b27c21d7 100644 --- a/pkg/config/config_test.go +++ b/pkg/config/config_test.go @@ -303,7 +303,7 @@ image_copy_tmp_dir="storage"` gomega.Expect(defaultConfig.Engine.NetworkCmdOptions.Get()).To(gomega.HaveLen(0)) gomega.Expect(defaultConfig.Engine.HelperBinariesDir.Get()).To(gomega.Equal(helperDirs)) gomega.Expect(defaultConfig.Engine.ServiceTimeout).To(gomega.BeEquivalentTo(300)) - gomega.Expect(defaultConfig.Engine.InfraImage).To(gomega.BeEquivalentTo("k8s.gcr.io/pause:3.4.1")) + gomega.Expect(defaultConfig.Engine.InfraImage).To(gomega.BeEquivalentTo("registry.k8s.io/pause:3.4.1")) gomega.Expect(defaultConfig.Machine.Volumes.Get()).To(gomega.BeEquivalentTo(volumes)) gomega.Expect(defaultConfig.Engine.PodmanshTimeout).To(gomega.BeEquivalentTo(300)) newV, err := defaultConfig.MachineVolumes() diff --git a/pkg/config/testdata/containers_default.conf b/pkg/config/testdata/containers_default.conf index aac406f90..71d180191 100644 --- a/pkg/config/testdata/containers_default.conf +++ b/pkg/config/testdata/containers_default.conf @@ -226,7 +226,7 @@ hooks_dir = [ ] # Default infra (pause) image name for pod infra containers -infra_image = "k8s.gcr.io/pause:3.4.1" +infra_image = "registry.k8s.io/pause:3.4.1" # Default command to run the infra container infra_command = "/pause"