We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3c877c commit 55689e8Copy full SHA for 55689e8
Makefile
@@ -215,8 +215,7 @@ kind-cluster-cleanup: $(KIND) ## Delete the kind cluster
215
216
.PHONY: kind-load
217
kind-load: check-cluster $(KIND) ## Load the built images onto the local cluster
218
- $(KIND) export kubeconfig --name $(KIND_CLUSTER_NAME)
219
- $(KIND) load docker-image $(IMAGE) --name $(KIND_CLUSTER_NAME)
+ docker save $(IMAGE) | $(KIND) load image-archive /dev/stdin --name $(KIND_CLUSTER_NAME)
220
221
.PHONY: install
222
install: check-cluster build-container kind-load deploy wait ## Install local catalogd to an existing cluster
0 commit comments