diff --git a/test/integration/addons_test.go b/test/integration/addons_test.go index 4c2841674f..fac1ec0c94 100644 --- a/test/integration/addons_test.go +++ b/test/integration/addons_test.go @@ -445,7 +445,7 @@ func validateHelmTillerAddon(ctx context.Context, t *testing.T, profile string) // Test from inside the cluster (`helm version` use pod.list permission.) checkHelmTiller := func() error { - rr, err := Run(t, exec.CommandContext(ctx, "kubectl", "--context", profile, "run", "--rm", "helm-test", "--restart=Never", "--image=alpine/helm:2.16.3", "-it", "--namespace=kube-system", "--", "version")) + rr, err := Run(t, exec.CommandContext(ctx, "kubectl", "--context", profile, "run", "--rm", "helm-test", "--restart=Never", "--image=docker.io/alpine/helm:2.16.3", "-it", "--namespace=kube-system", "--", "version")) if err != nil { return err } diff --git a/test/integration/testdata/csi-hostpath-driver/pv-pod-restore.yaml b/test/integration/testdata/csi-hostpath-driver/pv-pod-restore.yaml index 6a544d18d3..7a1ef7bf9c 100644 --- a/test/integration/testdata/csi-hostpath-driver/pv-pod-restore.yaml +++ b/test/integration/testdata/csi-hostpath-driver/pv-pod-restore.yaml @@ -11,7 +11,7 @@ spec: claimName: hpvc-restore containers: - name: task-pv-container - image: nginx + image: docker.io/nginx ports: - containerPort: 80 name: "http-server" diff --git a/test/integration/testdata/csi-hostpath-driver/pv-pod.yaml b/test/integration/testdata/csi-hostpath-driver/pv-pod.yaml index 62df999647..f336ed5a16 100644 --- a/test/integration/testdata/csi-hostpath-driver/pv-pod.yaml +++ b/test/integration/testdata/csi-hostpath-driver/pv-pod.yaml @@ -11,7 +11,7 @@ spec: claimName: hpvc containers: - name: task-pv-container - image: nginx + image: docker.io/nginx ports: - containerPort: 80 name: "http-server" diff --git a/test/integration/testdata/inaccel.yaml b/test/integration/testdata/inaccel.yaml index b592e742e6..c50a26a265 100644 --- a/test/integration/testdata/inaccel.yaml +++ b/test/integration/testdata/inaccel.yaml @@ -9,7 +9,7 @@ metadata: name: inaccel-vadd spec: containers: - - image: inaccel/vadd + - image: docker.io/inaccel/vadd name: inaccel-vadd resources: limits: diff --git a/test/integration/testdata/mysql.yaml b/test/integration/testdata/mysql.yaml index 986430cc76..bcbc6f55b9 100644 --- a/test/integration/testdata/mysql.yaml +++ b/test/integration/testdata/mysql.yaml @@ -24,7 +24,7 @@ spec: app: mysql spec: containers: - - image: mysql:5.7 + - image: docker.io/mysql:5.7 name: mysql resources: requests: diff --git a/test/integration/testdata/nginx-gvisor.yaml b/test/integration/testdata/nginx-gvisor.yaml index bc7550703d..695b950ebe 100644 --- a/test/integration/testdata/nginx-gvisor.yaml +++ b/test/integration/testdata/nginx-gvisor.yaml @@ -9,4 +9,4 @@ spec: runtimeClassName: gvisor containers: - name: nginx - image: nginx + image: docker.io/nginx diff --git a/test/integration/testdata/nginx-pod-svc.yaml b/test/integration/testdata/nginx-pod-svc.yaml index 67782f275c..2de27c0fec 100644 --- a/test/integration/testdata/nginx-pod-svc.yaml +++ b/test/integration/testdata/nginx-pod-svc.yaml @@ -8,7 +8,7 @@ metadata: spec: containers: - name: nginx - image: nginx:alpine + image: docker.io/nginx:alpine ports: - containerPort: 80 protocol: TCP diff --git a/test/integration/testdata/nginx-untrusted.yaml b/test/integration/testdata/nginx-untrusted.yaml index 5559bf4760..03c78c45dd 100644 --- a/test/integration/testdata/nginx-untrusted.yaml +++ b/test/integration/testdata/nginx-untrusted.yaml @@ -10,4 +10,4 @@ metadata: spec: containers: - name: nginx - image: nginx + image: docker.io/nginx diff --git a/test/integration/testdata/storage-provisioner/pod.yaml b/test/integration/testdata/storage-provisioner/pod.yaml index f2376b5f49..ac3922c032 100644 --- a/test/integration/testdata/storage-provisioner/pod.yaml +++ b/test/integration/testdata/storage-provisioner/pod.yaml @@ -7,7 +7,7 @@ metadata: spec: containers: - name: myfrontend - image: nginx + image: docker.io/nginx volumeMounts: - mountPath: "/tmp/mount" name: mypd diff --git a/test/integration/testdata/testsvc.yaml b/test/integration/testdata/testsvc.yaml index 6bfb64d611..67f3413ac2 100644 --- a/test/integration/testdata/testsvc.yaml +++ b/test/integration/testdata/testsvc.yaml @@ -8,7 +8,7 @@ metadata: spec: containers: - name: nginx - image: nginx:alpine + image: docker.io/nginx:alpine ports: - containerPort: 80 protocol: TCP