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 3a50055 commit 9e414d7Copy full SHA for 9e414d7
Makefile
@@ -151,7 +151,15 @@ e2e-coverage:
151
152
.PHONY: kind-load
153
kind-load: $(KIND) #EXHELP Loads the currently constructed image onto the cluster.
154
+ifeq ($(CONTAINER_RUNTIME),podman)
155
+ @echo "Using Podman"
156
+ podman save $(IMG) -o $(IMG).tar
157
+ $(KIND) load image-archive $(IMG).tar --name $(KIND_CLUSTER_NAME)
158
+ rm $(IMG).tar
159
+else
160
+ @echo "Using Docker"
161
$(KIND) load docker-image $(IMG) --name $(KIND_CLUSTER_NAME)
162
+endif
163
164
kind-deploy: export MANIFEST="./operator-controller.yaml"
165
kind-deploy: manifests $(KUSTOMIZE) #EXHELP Install controller and dependencies onto the kind cluster.
0 commit comments