Skip to content

Commit bb15291

Browse files
committed
Update SDK to use ubi8-minimal instead of busybox
1 parent 7f35502 commit bb15291

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sdk/python/kfp_tekton/compiler/_op_to_template.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@
3535
TEKTON_HOME_RESULT_PATH = "/tekton/home/tep-results/"
3636

3737
# 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'
3939
TEKTON_COPY_RESULTS_STEP_IMAGE = 'library/bash'
4040
GENERATE_COMPONENT_SPEC_ANNOTATIONS = True
4141

4242

4343
def _get_base_step(name: str):
4444
"""Base image step for running bash commands.
4545
46-
Return a busybox base step for running bash commands.
46+
Return a ubi8-minimal base step for running bash commands.
4747
4848
Args:
4949
name {str}: step name
@@ -252,7 +252,7 @@ def _process_parameters(processed_op: BaseOp,
252252
small tasks because it's relatively lightweight and small compared to the ubuntu and
253253
bash images.
254254
255-
- image: busybox
255+
- image: registry.access.redhat.com/ubi8/ubi-minimal
256256
name: copy-results
257257
script: |
258258
#!/bin/sh

0 commit comments

Comments
 (0)