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 edf8515 commit 39e9287Copy full SHA for 39e9287
Makefile
@@ -141,6 +141,13 @@ build: ## Build a postgres-operator image
141
--label org.opencontainers.image.title='Crunchy PostgreSQL Operator' \
142
.
143
144
+build-k3d: image.tar ; $(or $(K3D),k3d) image import $<
145
+build-kind: image.tar ; $(or $(KIND),kind) load image-archive $<
146
+build-minikube: image.tar ; $(or $(MINIKUBE),minikube) image load $<
147
+
148
+image.tar: build
149
+ $(BUILDAH) push localhost/postgres-operator oci-archive:$@:localhost/postgres-operator:latest
150
151
##@ Test
152
153
.PHONY: check
0 commit comments