Skip to content
Merged
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
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ CONTAINER_PLATFORM ?= amd64
# This variable is used to construct full image tags for bundle and catalog images.
#
# For example, running 'make bundle-build bundle-push catalog-build catalog-push' will build and push both
# hybrid-cloud-patterns.io/patterns-operator-bundle:$VERSION and hybrid-cloud-patterns.io/patterns-operator-catalog:$VERSION.
IMAGE_TAG_BASE ?= quay.io/hybridcloudpatterns/$(OPERATOR_NAME)-operator
# quay.io/validatedpatterns/patterns-operator-bundle:$VERSION and quay.io/validatedpatterns/patterns-operator-catalog:$VERSION.
IMAGE_TAG_BASE ?= $(UPLOADREGISTRY)/$(OPERATOR_NAME)-operator

# BUNDLE_IMG defines the image:tag used for the bundle.
# You can use it as an arg. (E.g make bundle-build BUNDLE_IMG=<some-registry>/<project-name-bundle>:<tag>)
Expand Down
3 changes: 1 addition & 2 deletions hack/operator-build-deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ CATALOGSOURCE="test-pattern-operator"
NS="openshift-operators"
OPERATOR="patterns-operator"
VERSION="${VERSION:-6.6.6}"
REGISTRY="${REGISTRY:-kuemper.int.rhx/bandini}"
UPLOADREGISTRY="${UPLOADREGISTRY:-kuemper.int.rhx/bandini}"

wait_for_resource() {
Expand Down Expand Up @@ -75,7 +74,7 @@ if [ $ret -ne 0 ]; then
exit 1
fi

make VERSION=${VERSION} UPLOADREGISTRY="${UPLOADREGISTRY}" IMAGE_TAG_BASE=${REGISTRY}/patterns-operator CHANNELS=fast USE_IMAGE_DIGESTS="" \
make VERSION=${VERSION} UPLOADREGISTRY="${UPLOADREGISTRY}" CHANNELS=fast USE_IMAGE_DIGESTS="" \
manifests bundle generate docker-build docker-push bundle-build bundle-push catalog-build \
catalog-push catalog-install

Expand Down