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

Remove unused podman push #312

Merged
merged 1 commit into from
Aug 9, 2021
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: 0 additions & 9 deletions ci/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,6 @@ function update_operator_image() {
image_spec=$image_location/$image_account/benchmark-operator:$SNAFU_IMAGE_TAG
make image-build image-push deploy IMG=$image_spec
kubectl wait --for=condition=available "deployment/benchmark-controller-manager" -n benchmark-operator --timeout=300s

# In case we have issues uploading to quay we will retry a few times
for i in {1..3}; do
$SUDO ${image_builder} push ${image_spec} && break
if [[ ${i} == 3 ]]; then
echo "Could not upload image to $image_location. Exiting"
exit $NOTOK
fi
done
}

function wait_clean {
Expand Down