diff options
| author | liqing.wu <liqing.wu@daoclod.io> | 2023-12-08 11:20:51 +0800 |
|---|---|---|
| committer | liqing.wu <liqing.wu@daoclod.io> | 2023-12-21 11:24:19 +0800 |
| commit | cbf1cb0ae79f8fec5d9798a664d6c88786d31681 (patch) | |
| tree | 6bb7ffaa3fab6f82d62a23c1c7a6a6e07ddf0dd7 /Makefile | |
| parent | Merge pull request #5305 from wbc6080/remove-protocol (diff) | |
| download | kubeedge-cbf1cb0ae79f8fec5d9798a664d6c88786d31681.tar.gz | |
Add keadm compatible e2e test
Signed-off-by: liqing.wu <liqing.wu@daoclod.io>
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -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 |
