Skip to content

Commit

Permalink
Remove dependencies on unexisting targets
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel Martín <mmartinv@redhat.com>
  • Loading branch information
mmartinv committed Jul 20, 2023
1 parent 34d57dc commit 46ef137
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ install-minikube:
MINIKUBE_USE_INTEGRATED_REGISTRY=$(MINIKUBE_USE_INTEGRATED_REGISTRY) \
./hack/installation/minikube.sh

uninstall-minikube: uninstall-local-registry
uninstall-minikube:
minikube delete

ROOTLESS ?= true
Expand All @@ -402,15 +402,15 @@ OLM_VERSION ?= v0.25.0
# Kind cert manager operator version (default: v1.12.2)
CERT_MANAGER_VERSION ?= v1.12.2

install-kind: install-local-registry
install-kind:
ROOTLESS=$(ROOTLESS) \
KIND_VERSION=$(KIND_VERSION) \
OLM_VERSION=$(OLM_VERSION) \
CERT_MANAGER_VERSION=$(CERT_MANAGER_VERSION) \
./hack/installation/kind.sh; \
[ $(CONTAINER_RUNTIME) != "podman" ] || export KIND_EXPERIMENTAL_PROVIDER="podman"; kind export kubeconfig --name forklift

uninstall-kind: uninstall-local-registry
uninstall-kind:
[ $(CONTAINER_RUNTIME) != "podman" ] || export KIND_EXPERIMENTAL_PROVIDER="podman"; kind delete clusters forklift

define DEPLOYMENT_VARS
Expand Down

0 comments on commit 46ef137

Please sign in to comment.