Skip to content

Commit

Permalink
chore(makefile): canonical repository name
Browse files Browse the repository at this point in the history
  • Loading branch information
prometherion committed Jun 22, 2023
1 parent 701ab55 commit 696dc90
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ BUNDLE_METADATA_OPTS ?= $(BUNDLE_CHANNELS) $(BUNDLE_DEFAULT_CHANNEL)
# 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
# clastix/cluster-api-control-plane-provider-kamaji-bundle:$VERSION and clastix/cluster-api-control-plane-provider-kamaji-catalog:$VERSION.
IMAGE_TAG_BASE ?= clastix/cluster-api-control-plane-provider-kamaji
# docker.io/clastix/cluster-api-control-plane-provider-kamaji-bundle:$VERSION and docker.io/clastix/cluster-api-control-plane-provider-kamaji-catalog:$VERSION.
IMAGE_TAG_BASE ?= docker.io/clastix/cluster-api-control-plane-provider-kamaji

# 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 All @@ -47,7 +47,7 @@ ifeq ($(USE_IMAGE_DIGESTS), true)
endif

# Image URL to use all building/pushing image targets
IMG ?= clastix/cluster-api-control-plane-provider-kamaji:$(VERSION)
IMG ?= docker.io/clastix/cluster-api-control-plane-provider-kamaji:$(VERSION)
# ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary.
ENVTEST_K8S_VERSION = 1.25.0

Expand Down Expand Up @@ -114,7 +114,7 @@ test: manifests generate fmt vet envtest ## Run tests.
.PHONY: release
release: manifests kustomize ## Create the single YAML manifest.
cd config/manager && $(KUSTOMIZE) edit set image controller=${IMG}
$(KUSTOMIZE) build config/default > config/install.yaml
$(KUSTOMIZE) build config/default > config/control-plane-components.yaml

##@ Build

Expand Down

0 comments on commit 696dc90

Please sign in to comment.