Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
workflow:
as: cucushift-installer-rehearse-gcp-ipi
steps:
env:
CUSTOM_OPENSHIFT_INSTALL_RELEASE_IMAGE_OVERRIDE: ""
pre:
- chain: cucushift-installer-rehearse-gcp-ipi-provision
- ref: cucushift-installer-reportportal-marker
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@ function exit_trap {
trap 'exit_trap' EXIT
trap 'CHILDREN=$(jobs -p); if test -n "${CHILDREN}"; then kill ${CHILDREN} && wait; fi' TERM

timeout 12h bash -c 'while true; do
if oc get cm/stop-preserving -n default &> /dev/null 2>&1; then
break
fi
sleep 30
done' || true
exit 0

export AWS_SHARED_CREDENTIALS_FILE=${CLUSTER_PROFILE_DIR:-/clusterprofie_fakedir}/.awscred
export AZURE_AUTH_LOCATION=${CLUSTER_PROFILE_DIR:-/clusterprofie_fakedir}/osServicePrincipal.json
export GCP_SHARED_CREDENTIALS_FILE=${CLUSTER_PROFILE_DIR:-/clusterprofie_fakedir}/gce.json
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ref:
grace_period: 10m
commands: openshift-extended-test-commands.sh
cli: latest
timeout: 8h0m0s
timeout: 12h0m0s
credentials:
- namespace: test-credentials
name: tests-private-account
Expand Down