Skip to content

Commit

Permalink
Merge pull request #551 from application-stacks/wait-fix
Browse files Browse the repository at this point in the history
Fix path to wait script
  • Loading branch information
idlewis authored Jun 13, 2023
2 parents a37aaf7 + 809c3be commit bf7f842
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/pipeline/ocp-cluster-e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -204,15 +204,15 @@ main() {
echo "sleep for 3 minutes to wait for rook-cepth, knative and cert-manager to start installing, then start monitoring for completion"
sleep 3m
echo "monitoring knative"
./wait.sh deployment knative-serving
scripts/pipeline/wait.sh deployment knative-serving
rc_kn=$?
echo "rc_kn=$rc_kn"
if [[ "$rc_kn" == 0 ]]; then
echo "knative up"
fi
if [[ "${ARCHITECTURE}" == "X" ]]; then
echo "monitoring rook-ceph if architecture is ${ARCHITECTURE}"
./wait.sh deployment rook-ceph
scripts/pipeline/wait.sh deployment rook-ceph
rc_rk=$?
echo "rc_rk=$rc_rk"
if [[ "$rc_rk" == 0 ]]; then
Expand Down Expand Up @@ -408,4 +408,4 @@ parse_args() {
done
}

main "$@"
main "$@"

0 comments on commit bf7f842

Please sign in to comment.