Tommy Li
Tommy Li
The outputPath and inputPath should be part of the pipeline object in the compiler. Probably it wasn't capture when passing to the `big data passing` function.
@tks-ai thanks for reporting this. We updated the big data passing recently to run on CSI Storage. This could be possible if we update the compiler a little bit. We...
thanks @wzhanw. We added a way to pass down the workspace to the pipelineRuns inside loops https://github.com/kubeflow/kfp-tekton/pull/787 It makes sense to add a way to iterate items inside a file...
For @joeswashington 's use case, we probably need to invent a new custom task controller that trying to do similar things in Spark where the output of a pipeline task...
@yhwang coming back to this question, maybe we can try to use https://github.com/kubeflow/kfp-tekton/blob/master/sdk/python/tests/compiler/testdata/data_passing_pipeline_complete.py to test whether we need that step to copy the results. There are few more features we...
@ckadner they added the redirect this morning, it was 404 yesterday after noon since they were doing some migration.
the test should be passing now after triggering the github actions again
thanks @ckadner, I think we need to update our WML example and services because we were using V4 beta. The V4 GA also includes all the autoAI stuff so the...
/assign @ScrapCodes
The current kfp-tekton copy artifact container is generated with this script: ``` #!/usr/bin/env sh push_artifact() { if [ -f "$2" ]; then tar -cvzf $1.tgz $2 mc cp $1.tgz storage/$ARTIFACT_BUCKET/artifacts/$PIPELINERUN/$PIPELINETASK/$1.tgz...