File tree 2 files changed +3
-3
lines changed
apps/kubernetes-provider/src 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ class KubernetesTaskOperations implements TaskOperations {
211
211
} ,
212
212
{
213
213
name : "populate-taskinfo" ,
214
- image : "busybox" ,
214
+ image : "docker.io/library/ busybox" ,
215
215
command : [ "/bin/sh" , "-c" ] ,
216
216
args : [ "printenv COORDINATOR_HOST | tee /etc/taskinfo/coordinator-host" ] ,
217
217
env : [
Original file line number Diff line number Diff line change @@ -408,7 +408,7 @@ export class TaskMonitor {
408
408
const createNonZeroExitPod = async ( name : string , labels ?: Record < string , string > ) => {
409
409
const container = {
410
410
name,
411
- image : "busybox" ,
411
+ image : "docker.io/library/ busybox" ,
412
412
command : [ "sh" ] ,
413
413
args : [ "-c" , "exit 1" ] ,
414
414
} satisfies k8s . V1Container ;
@@ -419,7 +419,7 @@ export class TaskMonitor {
419
419
const createOoDiskPod = async ( name : string , labels ?: Record < string , string > ) => {
420
420
const container = {
421
421
name,
422
- image : "busybox" ,
422
+ image : "docker.io/library/ busybox" ,
423
423
command : [ "sh" ] ,
424
424
args : [
425
425
"-c" ,
You can’t perform that action at this time.
0 commit comments