Skip to content

Commit 75a5454

Browse files
committed
use full image refs for init containers
1 parent b68012f commit 75a5454

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/kubernetes-provider/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ class KubernetesTaskOperations implements TaskOperations {
211211
},
212212
{
213213
name: "populate-taskinfo",
214-
image: "busybox",
214+
image: "docker.io/library/busybox",
215215
command: ["/bin/sh", "-c"],
216216
args: ["printenv COORDINATOR_HOST | tee /etc/taskinfo/coordinator-host"],
217217
env: [

apps/kubernetes-provider/src/taskMonitor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ export class TaskMonitor {
408408
const createNonZeroExitPod = async (name: string, labels?: Record<string, string>) => {
409409
const container = {
410410
name,
411-
image: "busybox",
411+
image: "docker.io/library/busybox",
412412
command: ["sh"],
413413
args: ["-c", "exit 1"],
414414
} satisfies k8s.V1Container;
@@ -419,7 +419,7 @@ export class TaskMonitor {
419419
const createOoDiskPod = async (name: string, labels?: Record<string, string>) => {
420420
const container = {
421421
name,
422-
image: "busybox",
422+
image: "docker.io/library/busybox",
423423
command: ["sh"],
424424
args: [
425425
"-c",

0 commit comments

Comments
 (0)