Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix image-stream in nightly jobs #2328

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .ibm/pipelines/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,8 @@ deploy_test_backstage_provider() {
# Check if the buildconfig already exists
if ! oc get buildconfig test-backstage-customization-provider -n "${project}" >/dev/null 2>&1; then
echo "Creating new app for test-backstage-customization-provider"
oc new-app https://github.com/janus-qe/test-backstage-customization-provider --image-stream="openshift/nodejs:18-minimal-ubi8" --namespace="${project}"
oc new-app -S openshift/nodejs:18-minimal-ubi8
oc new-app https://github.com/janus-qe/test-backstage-customization-provider --image-stream="openshift/nodejs:18-ubi8" --namespace="${project}"
else
echo "BuildConfig for test-backstage-customization-provider already exists in ${project}. Skipping new-app creation."
fi
Expand Down
Loading