Skip to content

Commit 05a26be

Browse files
committed
Point the default KUTTL command to the correct package
Follow-up to 7776996. Did this ever work?
1 parent 0719058 commit 05a26be

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ CONTROLLER ?= $(GO) tool sigs.k8s.io/controller-tools/cmd/controller-gen
1313

1414
# Run tests using the latest tools.
1515
ENVTEST ?= $(GO) run sigs.k8s.io/controller-runtime/tools/setup-envtest@latest
16-
KUTTL ?= $(GO) run github.com/kudobuilder/kuttl/pkg/kuttlctl/cmd/kubectl-kuttl@latest
16+
KUTTL ?= $(GO) run github.com/kudobuilder/kuttl/cmd/kubectl-kuttl@latest
1717
KUTTL_TEST ?= $(KUTTL) test
1818

1919
##@ General
@@ -171,6 +171,10 @@ check-envtest-existing: createnamespaces
171171
kubectl delete -k ./config/dev
172172

173173
# Expects operator to be running
174+
#
175+
# KUTTL runs with a single kubectl context named "cluster".
176+
# If you experience `cluster "minikube" does not exist`, try `MINIKUBE_PROFILE=cluster`.
177+
#
174178
.PHONY: check-kuttl
175179
check-kuttl: ## Run kuttl end-to-end tests
176180
check-kuttl: ## example command: make check-kuttl KUTTL_TEST='

0 commit comments

Comments
 (0)