File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
sdk/python/kfp_tekton/compiler Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 35
35
TEKTON_HOME_RESULT_PATH = "/tekton/home/tep-results/"
36
36
37
37
# The image to use in basic bash steps such as copying results in multi-step.
38
- TEKTON_BASH_STEP_IMAGE = 'busybox '
38
+ TEKTON_BASH_STEP_IMAGE = 'registry.access.redhat.com/ubi8/ubi-minimal '
39
39
TEKTON_COPY_RESULTS_STEP_IMAGE = 'library/bash'
40
40
GENERATE_COMPONENT_SPEC_ANNOTATIONS = True
41
41
42
42
43
43
def _get_base_step (name : str ):
44
44
"""Base image step for running bash commands.
45
45
46
- Return a busybox base step for running bash commands.
46
+ Return a ubi8-minimal base step for running bash commands.
47
47
48
48
Args:
49
49
name {str}: step name
@@ -252,7 +252,7 @@ def _process_parameters(processed_op: BaseOp,
252
252
small tasks because it's relatively lightweight and small compared to the ubuntu and
253
253
bash images.
254
254
255
- - image: busybox
255
+ - image: registry.access.redhat.com/ubi8/ubi-minimal
256
256
name: copy-results
257
257
script: |
258
258
#!/bin/sh
You can’t perform that action at this time.
0 commit comments