summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorliqing.wu <liqing.wu@daoclod.io>2023-12-08 11:20:51 +0800
committerliqing.wu <liqing.wu@daoclod.io>2023-12-21 11:24:19 +0800
commitcbf1cb0ae79f8fec5d9798a664d6c88786d31681 (patch)
tree6bb7ffaa3fab6f82d62a23c1c7a6a6e07ddf0dd7 /Makefile
parentMerge pull request #5305 from wbc6080/remove-protocol (diff)
downloadkubeedge-cbf1cb0ae79f8fec5d9798a664d6c88786d31681.tar.gz
Add keadm compatible e2e test
Signed-off-by: liqing.wu <liqing.wu@daoclod.io>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 395feba50..548a93fe6 100644
--- a/Makefile
+++ b/Makefile
@@ -449,3 +449,20 @@ else
release:
hack/make-rules/release.sh $(WHAT) $(ARM_VERSION) $(OS)
endif
+
+define KEADM_COMPATIBILITY_E2E_HELP_INFO
+# keadm compatibility e2e test
+#
+# Example:
+# make keadm_compatibility_e2e
+# make keadm_compatibility_e2e HELP=y
+#
+endef
+.PHONY: keadm_compatibility_e2e
+ifeq ($(HELP),y)
+keadm_compatibility_e2e:
+ @echo "KEADM_COMPATIBILITY_E2E_HELP_INFO"
+else
+keadm_compatibility_e2e:
+ tests/scripts/keadm_compatibility_e2e.sh ${CLOUD_EDGE_VERSION}
+endif