File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -213,7 +213,7 @@ func (f *realFramework) ClientV2() *v2.Client {
213
213
214
214
func (a dockerActions ) RunPause () string {
215
215
return a .Run (DockerRunArgs {
216
- Image : "kubernetes /pause" ,
216
+ Image : "registry.k8s.io /pause" ,
217
217
})
218
218
}
219
219
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ func TestDockerContainerByName(t *testing.T) {
90
90
91
91
containerName := fmt .Sprintf ("test-docker-container-by-name-%d" , os .Getpid ())
92
92
fm .Docker ().Run (framework.DockerRunArgs {
93
- Image : "kubernetes /pause" ,
93
+ Image : "registry.k8s.io /pause" ,
94
94
Args : []string {"--name" , containerName },
95
95
})
96
96
@@ -150,7 +150,7 @@ func TestBasicDockerContainer(t *testing.T) {
150
150
151
151
containerName := fmt .Sprintf ("test-basic-docker-container-%d" , os .Getpid ())
152
152
containerID := fm .Docker ().Run (framework.DockerRunArgs {
153
- Image : "kubernetes /pause" ,
153
+ Image : "registry.k8s.io /pause" ,
154
154
Args : []string {
155
155
"--name" , containerName ,
156
156
},
@@ -183,7 +183,7 @@ func TestDockerContainerSpec(t *testing.T) {
183
183
cpuShares = uint64 (2048 )
184
184
cpuMask = "0"
185
185
memoryLimit = uint64 (1 << 30 ) // 1GB
186
- image = "kubernetes /pause"
186
+ image = "registry.k8s.io /pause"
187
187
env = map [string ]string {"test_var" : "FOO" }
188
188
labels = map [string ]string {"bar" : "baz" }
189
189
)
You can’t perform that action at this time.
0 commit comments