Skip to content

Commit 32b24ba

Browse files
authored
Fix running conformance tests (#171)
Signed-off-by: Angelos Kolaitis <neoaggelos@gmail.com>
1 parent 8d0e7b7 commit 32b24ba

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ test-e2e: ginkgo kustomize kini ## Run e2e tests
137137
$(E2E_ARGS)
138138

139139
.PHONY: run-test-conformance
140-
run-test-conformance: ginkgo kustomize
140+
run-test-conformance: TAG = e2e
141+
run-test-conformance: ginkgo kustomize ko-load-docker
141142
env \
142143
KUBETEST_CONFIGURATION="$(KUBETEST_CONFIGURATION)" \
143144
time $(GINKGO) \
@@ -181,6 +182,10 @@ ko-build: ko $(LOCALBIN) ## Build manager image and load to local docker instanc
181182
ko-load-kini: ko-build kini ## Import manager image to kini cache.
182183
KINI_DOCKER_LOGV=5 $(KINI) docker load -i $(TARBALL)
183184

185+
.PHONY: ko-load-docker
186+
ko-load-docker: ko-build kini ## Import manager image to docker.
187+
docker load -i $(TARBALL)
188+
184189
.PHONY: ko-login
185190
ko-login: ko ## Configure credentials for pushing images (needs USERNAME and PASSWORD).
186191
echo $(PASSWORD) | $(KO) login $(REGISTRY) --username $(USERNAME) --password-stdin

0 commit comments

Comments
 (0)