diff --git a/manifests/integrations/Makefile b/manifests/integrations/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..ebe8d3208d97dd76aa3323ecbc2ca38bb45ecd4b
--- /dev/null
+++ b/manifests/integrations/Makefile
@@ -0,0 +1,14 @@
+
+bases := $(shell dirname $(shell find | grep kustomization.yaml | sort))
+
+all: $(bases)
+
+permutations := $(bases) $(addsuffix /,$(bases))
+.PHONY: $(permutations)
+$(permutations):
+	@echo $@
+	@warnings=$$(kustomize build $@ -o /dev/null 2>&1); \
+		if [ "$$warnings" ]; then \
+			echo "$$warnings"; \
+			false; \
+		fi