Skip to content

Commit 55b5f1c

Browse files
committed
replace k8s.gcr.io with registry.k8s.io
The Kubernetes project has migrated all container images to a new community-owned registry: registry.k8s.io instead of k8s.gcr.io. This commit changes the same. Signed-off-by: Harsh Rawat <harshrawat@microsoft.com>
1 parent b7fa006 commit 55b5f1c

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -543,8 +543,8 @@ jobs:
543543
working-directory: src/github.com/containerd/containerd
544544
env:
545545
TEST_IMAGE_LIST: ${{github.workspace}}/repolist.toml
546-
BUSYBOX_TESTING_IMAGE_REF: "k8s.gcr.io/e2e-test-images/busybox:1.29-2"
547-
RESOURCE_CONSUMER_TESTING_IMAGE_REF: "k8s.gcr.io/e2e-test-images/resource-consumer:1.10"
546+
BUSYBOX_TESTING_IMAGE_REF: "registry.k8s.io/e2e-test-images/busybox:1.29-2"
547+
RESOURCE_CONSUMER_TESTING_IMAGE_REF: "registry.k8s.io/e2e-test-images/resource-consumer:1.10"
548548
CGO_ENABLED: 1
549549
run: |
550550
cat > "${{ env.TEST_IMAGE_LIST }}" << EOF

test/pkg/images/images.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const (
1414
MCRWindowsImageRepo = "mcr.microsoft.com/windows"
1515

1616
ImageLinuxAlpineLatest = "docker.io/library/alpine:latest"
17-
ImageLinuxPause31 = "k8s.gcr.io/pause:3.1"
17+
ImageLinuxPause31 = "registry.k8s.io/pause:3.1"
1818
ImageMCRLinuxPause = "mcr.microsoft.com/oss/kubernetes/pause:3.1"
1919
)
2020

0 commit comments

Comments
 (0)