From 8e66c12e54bd954cc2935e97e00ed272337a248d Mon Sep 17 00:00:00 2001 From: Manohar Reddy Date: Fri, 30 Apr 2021 09:45:53 +0000 Subject: [PATCH] cleanup un-used to make targets --- Makefile | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/Makefile b/Makefile index e879dfdec..12a40c3b6 100644 --- a/Makefile +++ b/Makefile @@ -181,19 +181,3 @@ install-blobfuse-proxy: .PHONY: uninstall-blobfuse-proxy uninstall-blobfuse-proxy: kubectl delete -f ./deploy/blobfuse-proxy/blobfuse-proxy.yaml --ignore-not-found - -.PHONY: setup-external-e2e -setup-external-e2e: - curl -sL https://storage.googleapis.com/kubernetes-release/release/v1.19.0/kubernetes-test-linux-amd64.tar.gz --output e2e-tests.tar.gz - tar -xvf e2e-tests.tar.gz - rm e2e-tests.tar.gz - mkdir /tmp/csi-blobfuse - cp ./kubernetes/test/bin/e2e.test /tmp/csi-blobfuse/e2e.test - rm -r kubernetes - cp ./deploy/example/storageclass-blobfuse.yaml /tmp/csi-blobfuse/storageclass.yaml - cp ./test/e2e-external/testdriver.yaml /tmp/csi-blobfuse/testdriver.yaml - ./deploy/install-driver.sh - -.PHONY: run-external-e2e -run-external-e2e: setup-external-e2e install-blobfuse-proxy - bash ./test/e2e-external/run.sh