Use github images for integration tests

Signed-off-by: Derek McGowan <derek@mcg.dev>
This commit is contained in:
Derek McGowan 2021-09-20 13:35:13 -07:00
parent d72d2794de
commit 3e72e335fe
No known key found for this signature in database
GPG Key ID: F58C5D0A4405ACDB
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ const (
) )
var ( var (
testImage = "mirror.gcr.io/library/busybox:1.32.0" testImage = "ghcr.io/containerd/busybox:1.32"
shortCommand = withProcessArgs("true") shortCommand = withProcessArgs("true")
longCommand = withProcessArgs("/bin/sh", "-c", "while true; do sleep 1; done") longCommand = withProcessArgs("/bin/sh", "-c", "while true; do sleep 1; done")
) )

View File

@ -53,7 +53,7 @@ import (
"golang.org/x/sys/unix" "golang.org/x/sys/unix"
) )
const testUserNSImage = "mirror.gcr.io/library/alpine:3.13.5" const testUserNSImage = "ghcr.io/containerd/alpine:3.14.0"
// TestRegressionIssue4769 verifies the number of task exit events. // TestRegressionIssue4769 verifies the number of task exit events.
// //