Skip to content
Draft
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
6 changes: 6 additions & 0 deletions .ci/pipelines/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1315,6 +1315,7 @@ check_and_test() {
local max_attempts=${5:-30} # Default to 30 if not set
local wait_seconds=${6:-30} # Default to 30 if not set

sleep 1h
if check_backstage_running "${release_name}" "${namespace}" "${url}" "${max_attempts}" "${wait_seconds}"; then
echo "Display pods for verification..."
oc get pods -n "${namespace}"
Expand Down Expand Up @@ -1617,6 +1618,11 @@ deploy_orchestrator_workflows() {

oc rollout status deployment/"$workflow" -n "$namespace" --timeout=600s
done

log::info "Waiting for all workflow pods to be running..."
wait_for_deployment $namespace greeting 5
wait_for_deployment $namespace failswitch 5
log::info "All workflow pods are now running!"
}

# Helper function to deploy workflows for orchestrator testing (operator-based)
Expand Down
Loading