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

If install succeeds, guarantee we grab output even if it doesn't stabilize #1179

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
9 changes: 7 additions & 2 deletions ci-operator/templates/cluster-launch-installer-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ objects:
while true; do
if [[ -f /tmp/exit ]]; then
echo "Interrupted"
cp $KUBECONFIG /tmp/admin.kubeconfig
exit 1
fi
if [[ ! -f /tmp/oc ]]; then
Expand All @@ -228,9 +229,13 @@ objects:
fi
break
done
/tmp/oc wait deploy/router -n tectonic-ingress --for condition=available --timeout=5m
echo "Copied kubeconfig, installation successful"
if ! /tmp/oc wait deploy/router -n tectonic-ingress --for condition=available --timeout=5m; then
echo "Installation failed"
cp $KUBECONFIG /tmp/admin.kubeconfig
exit 1
fi
cp $KUBECONFIG /tmp/admin.kubeconfig
echo "Installation successful"

# Performs cleanup of all created resources
- name: teardown
Expand Down