Skip to content

Commit

Permalink
openshift_integration: fix remaining file path references to use BASE…
Browse files Browse the repository at this point in the history
…_DIR instead of relative path

Signed-off-by: Michael Valdron <mvaldron@redhat.com>
  • Loading branch information
michael-valdron committed Jan 6, 2025
1 parent ebb9400 commit 590e9ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .ci/openshift_integration.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ GINKGO_VERSION="$(cd $BASE_DIR/tests/odov3 && go list -m -json all | ${YQ_PATH}
go install github.com/onsi/ginkgo/v2/ginkgo@${GINKGO_VERSION}

# Install the devfile registry
oc process -f .ci/deploy/devfile-registry.yaml -p DEVFILE_INDEX_IMAGE=$IMG -p IMAGE_TAG=$TAG -p REPLICAS=3 -p ANALYTICS_WRITE_KEY= | \
oc process -f $BASE_DIR/.ci/deploy/devfile-registry.yaml -p DEVFILE_INDEX_IMAGE=$IMG -p IMAGE_TAG=$TAG -p REPLICAS=3 -p ANALYTICS_WRITE_KEY= | \
oc apply -f -

# Deploy the routes for the registry
oc process -f .ci/deploy/route.yaml | oc apply -f -
oc process -f $BASE_DIR/.ci/deploy/route.yaml | oc apply -f -

# Wait for the registry to become ready
oc wait deploy/devfile-registry --for=condition=Available --timeout=600s
Expand Down

0 comments on commit 590e9ea

Please sign in to comment.