We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5267371 commit f95f641Copy full SHA for f95f641
tests/basictests/ds-pipelines.sh
@@ -29,6 +29,7 @@ function create_pipeline() {
29
if [[ -z $route ]]; then
30
oc expose service ds-pipeline
31
fi
32
+ sleep 60 #TODO: quick fix for race condition, implement a better check to begin test execution once service is ready
33
ROUTE=$(oc get route ds-pipeline --template={{.spec.host}})
34
PIPELINE_ID=$(curl -s -F "uploadfile=@${RESOURCEDIR}/ds-pipelines/test-pipeline-run.yaml" ${ROUTE}/apis/v1beta1/pipelines/upload | jq -r .id)
35
os::cmd::try_until_not_text "curl -s ${ROUTE}/apis/v1beta1/pipelines/${PIPELINE_ID} | jq" "null" $odhdefaulttimeout $odhdefaultinterval
0 commit comments