added docker.io to all Docker Hub images that didn't have it

pull/16069/head
Steven Powell 2023-05-12 09:44:24 -07:00
parent ee5cc4ec2d
commit 2dff834f92
10 changed files with 10 additions and 10 deletions

View File

@ -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
} }

View File

@ -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"

View File

@ -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"

View File

@ -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:

View File

@ -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:

View File

@ -9,4 +9,4 @@ spec:
runtimeClassName: gvisor runtimeClassName: gvisor
containers: containers:
- name: nginx - name: nginx
image: nginx image: docker.io/nginx

View File

@ -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

View File

@ -10,4 +10,4 @@ metadata:
spec: spec:
containers: containers:
- name: nginx - name: nginx
image: nginx image: docker.io/nginx

View File

@ -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

View File

@ -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