Skip to content

Commit

Permalink
don't use unqualified image names (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
pepoviola authored Dec 28, 2021
1 parent a566d64 commit 05656f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/providers/k8s/dynResourceDefinition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export async function genNodeDef(namespace: string, nodeSetup: Node): Promise<an
function make_transfer_containter(): any {
return {
name: TRANSFER_CONTAINER_NAME,
image: "alpine",
image: "docker.io/alpine",
imagePullPolicy: "Always",
volumeMounts: [{ name: "tmp-cfg", mountPath: "/cfg", readOnly: false }],
command: [
Expand Down
2 changes: 1 addition & 1 deletion src/providers/podman/dynResourceDefinition.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export async function genNodeDef(namespace: string, nodeSetup: Node): Promise<an
function make_transfer_containter(): any {
return {
name: TRANSFER_CONTAINER_NAME,
image: "alpine",
image: "docker.io/alpine",
imagePullPolicy: "Always",
volumeMounts: [{ name: "tmp-cfg", mountPath: "/cfg", readOnly: false }],
command: [
Expand Down

0 comments on commit 05656f2

Please sign in to comment.