Skip to content
This repository has been archived by the owner on Dec 12, 2022. It is now read-only.

Commit

Permalink
add Readme for 4x
Browse files Browse the repository at this point in the history
  • Loading branch information
sub-mod committed May 19, 2020
1 parent af37cd1 commit 485736f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tf_cnn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Run the setup script to create Tasks, Pipelines
`./setup.sh`

To run the pipeline, execute the run script.
`./run_pipeline.sh`
`./run_pipeline.sh 4x`

To delete the pipeline , task resources execute the drop_pipeline script.
`./drop_pipeline.sh`
Expand Down
9 changes: 8 additions & 1 deletion tf_cnn/run_pipeline.sh
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
oc create -f pipeline-run/pipelinerun.yml

if [ $1 = "4x" ]; then
echo "Running for 4.x cluster"
oc create -f pipeline-run/pipelinerun_4_x.yml
else
echo "Running for 3.11 cluster"
oc create -f pipeline-run/pipelinerun.yml
fi

0 comments on commit 485736f

Please sign in to comment.