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.)
|
||||
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
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -11,7 +11,7 @@ spec:
|
|||
claimName: hpvc
|
||||
containers:
|
||||
- name: task-pv-container
|
||||
image: nginx
|
||||
image: docker.io/nginx
|
||||
ports:
|
||||
- containerPort: 80
|
||||
name: "http-server"
|
||||
|
|
|
@ -9,7 +9,7 @@ metadata:
|
|||
name: inaccel-vadd
|
||||
spec:
|
||||
containers:
|
||||
- image: inaccel/vadd
|
||||
- image: docker.io/inaccel/vadd
|
||||
name: inaccel-vadd
|
||||
resources:
|
||||
limits:
|
||||
|
|
|
@ -24,7 +24,7 @@ spec:
|
|||
app: mysql
|
||||
spec:
|
||||
containers:
|
||||
- image: mysql:5.7
|
||||
- image: docker.io/mysql:5.7
|
||||
name: mysql
|
||||
resources:
|
||||
requests:
|
||||
|
|
|
@ -9,4 +9,4 @@ spec:
|
|||
runtimeClassName: gvisor
|
||||
containers:
|
||||
- name: nginx
|
||||
image: nginx
|
||||
image: docker.io/nginx
|
||||
|
|
|
@ -8,7 +8,7 @@ metadata:
|
|||
spec:
|
||||
containers:
|
||||
- name: nginx
|
||||
image: nginx:alpine
|
||||
image: docker.io/nginx:alpine
|
||||
ports:
|
||||
- containerPort: 80
|
||||
protocol: TCP
|
||||
|
|
|
@ -10,4 +10,4 @@ metadata:
|
|||
spec:
|
||||
containers:
|
||||
- name: nginx
|
||||
image: nginx
|
||||
image: docker.io/nginx
|
||||
|
|
|
@ -7,7 +7,7 @@ metadata:
|
|||
spec:
|
||||
containers:
|
||||
- name: myfrontend
|
||||
image: nginx
|
||||
image: docker.io/nginx
|
||||
volumeMounts:
|
||||
- mountPath: "/tmp/mount"
|
||||
name: mypd
|
||||
|
|
|
@ -8,7 +8,7 @@ metadata:
|
|||
spec:
|
||||
containers:
|
||||
- name: nginx
|
||||
image: nginx:alpine
|
||||
image: docker.io/nginx:alpine
|
||||
ports:
|
||||
- containerPort: 80
|
||||
protocol: TCP
|
||||
|
|
Loading…
Reference in New Issue