Description of problem: I built a bundle and failed on the last make target: .PHONY: bundle-push bundle-push: ## Push the bundle image. $(BUNDLE_CONTAINER_COMMAND) push IMG=$(BUNDLE_IMG) You get this weird error: docker push IMG=quay.io/ukalifon/special-resource-operator-bundle:v0.0.1 Emulate Docker CLI using podman. Create /etc/containers/nodocker to quiet msg. Error: invalid reference format make: *** [Makefile:199: bundle-push] Error 125 To fix it, just remove the IMG= from the push command. How reproducible: 100% Steps to Reproduce: 1. git clone https://github.com/openshift/special-resource-operator 2. cd special-resource-operator 3. podman login -u <quay_user> quay.io 4. IMAGE_TAG_BASE=quay.io/<quay_user>/special-resource-operator IMG=quay.io/<quay_user>/special-resource-operator make local-image-build local-image-push bundle bundle-build bundle-push Actual results: The last make target tries to run "podman push IMG=..." and fails because you don't need to pass "IMG=..." Expected results: Make should run without errors
Verified on Mar. 18th with the latest version from git.
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory (Important: OpenShift Container Platform 4.11.0 bug fix and security update), and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHSA-2022:5069