added docker.io to all Docker Hub images that didn't have it
parent
ee5cc4ec2d
commit
2dff834f92
|
@ -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.)
|
// Test from inside the cluster (`helm version` use pod.list permission.)
|
||||||
checkHelmTiller := func() error {
|
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 {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
|
@ -11,7 +11,7 @@ spec:
|
||||||
claimName: hpvc-restore
|
claimName: hpvc-restore
|
||||||
containers:
|
containers:
|
||||||
- name: task-pv-container
|
- name: task-pv-container
|
||||||
image: nginx
|
image: docker.io/nginx
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 80
|
- containerPort: 80
|
||||||
name: "http-server"
|
name: "http-server"
|
||||||
|
|
|
@ -11,7 +11,7 @@ spec:
|
||||||
claimName: hpvc
|
claimName: hpvc
|
||||||
containers:
|
containers:
|
||||||
- name: task-pv-container
|
- name: task-pv-container
|
||||||
image: nginx
|
image: docker.io/nginx
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 80
|
- containerPort: 80
|
||||||
name: "http-server"
|
name: "http-server"
|
||||||
|
|
|
@ -9,7 +9,7 @@ metadata:
|
||||||
name: inaccel-vadd
|
name: inaccel-vadd
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- image: inaccel/vadd
|
- image: docker.io/inaccel/vadd
|
||||||
name: inaccel-vadd
|
name: inaccel-vadd
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
|
|
|
@ -24,7 +24,7 @@ spec:
|
||||||
app: mysql
|
app: mysql
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- image: mysql:5.7
|
- image: docker.io/mysql:5.7
|
||||||
name: mysql
|
name: mysql
|
||||||
resources:
|
resources:
|
||||||
requests:
|
requests:
|
||||||
|
|
|
@ -9,4 +9,4 @@ spec:
|
||||||
runtimeClassName: gvisor
|
runtimeClassName: gvisor
|
||||||
containers:
|
containers:
|
||||||
- name: nginx
|
- name: nginx
|
||||||
image: nginx
|
image: docker.io/nginx
|
||||||
|
|
|
@ -8,7 +8,7 @@ metadata:
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: nginx
|
- name: nginx
|
||||||
image: nginx:alpine
|
image: docker.io/nginx:alpine
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 80
|
- containerPort: 80
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
|
|
@ -10,4 +10,4 @@ metadata:
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: nginx
|
- name: nginx
|
||||||
image: nginx
|
image: docker.io/nginx
|
||||||
|
|
|
@ -7,7 +7,7 @@ metadata:
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: myfrontend
|
- name: myfrontend
|
||||||
image: nginx
|
image: docker.io/nginx
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: "/tmp/mount"
|
- mountPath: "/tmp/mount"
|
||||||
name: mypd
|
name: mypd
|
||||||
|
|
|
@ -8,7 +8,7 @@ metadata:
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: nginx
|
- name: nginx
|
||||||
image: nginx:alpine
|
image: docker.io/nginx:alpine
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 80
|
- containerPort: 80
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
|
Loading…
Reference in New Issue