Skip to content

Commit

Permalink
Switch to registry.k8s.io
Browse files Browse the repository at this point in the history
Signed-off-by: David Porter <[email protected]>
  • Loading branch information
bobbypage committed Jun 16, 2023
1 parent 90aebba commit 03da1f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion integration/framework/framework.go
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ func (f *realFramework) ClientV2() *v2.Client {

func (a dockerActions) RunPause() string {
return a.Run(DockerRunArgs{
Image: "kubernetes/pause",
Image: "registry.k8s.io/pause",
})
}

Expand Down
6 changes: 3 additions & 3 deletions integration/tests/api/docker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func TestDockerContainerByName(t *testing.T) {

containerName := fmt.Sprintf("test-docker-container-by-name-%d", os.Getpid())
fm.Docker().Run(framework.DockerRunArgs{
Image: "kubernetes/pause",
Image: "registry.k8s.io/pause",
Args: []string{"--name", containerName},
})

Expand Down Expand Up @@ -150,7 +150,7 @@ func TestBasicDockerContainer(t *testing.T) {

containerName := fmt.Sprintf("test-basic-docker-container-%d", os.Getpid())
containerID := fm.Docker().Run(framework.DockerRunArgs{
Image: "kubernetes/pause",
Image: "registry.k8s.io/pause",
Args: []string{
"--name", containerName,
},
Expand Down Expand Up @@ -183,7 +183,7 @@ func TestDockerContainerSpec(t *testing.T) {
cpuShares = uint64(2048)
cpuMask = "0"
memoryLimit = uint64(1 << 30) // 1GB
image = "kubernetes/pause"
image = "registry.k8s.io/pause"
env = map[string]string{"test_var": "FOO"}
labels = map[string]string{"bar": "baz"}
)
Expand Down

0 comments on commit 03da1f3

Please sign in to comment.