diff options
author | Vijay Venkatesh Kumar <vv770d@att.com> | 2020-05-26 14:51:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-05-26 14:51:39 +0000 |
commit | d5c7cf6980a4e017324dde4cd041ba9496d67bf8 (patch) | |
tree | 80b47dd419d164e917d6cf9d46758fd2da7ee7a3 /performanceTests/Makefile | |
parent | 89e951208e78118bdf29ae90e465bd7c668b4462 (diff) | |
parent | a4d74cd90b7aae6d7ecf2a87b4048a96aa7677d9 (diff) |
Merge "Deployment Prometheus and Grafana on RKE for perf tests"
Diffstat (limited to 'performanceTests/Makefile')
-rw-r--r-- | performanceTests/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/performanceTests/Makefile b/performanceTests/Makefile new file mode 100644 index 00000000..5583a613 --- /dev/null +++ b/performanceTests/Makefile @@ -0,0 +1,27 @@ +all: copy-performanceTests run-performanceTests + + +RKE_NODE_USER_AND_HOSTNAME = <RKE_USER>@<RKE_IP> # for example ubuntu@10.183.36.205 +RKE_PRIVATE_KEY = <PEM_PRIVATE_KEY_FILE_PATH> # for example ~/.ssh/onap-5802.pem +PERFORMANCE_TESTS_DIRECTORY = vesPerformanceTestsEnv +RKE_KUBECONFIG_FILE_PATH = <KUBECONFIG_FILE_PATH_ON_RKE> # for example /home/ubuntu/.kube/config.onap + +copy-performanceTests: + @echo "\n##### Copy performance tests directory to lab environment #####" + scp -r -i $(RKE_PRIVATE_KEY) ./k8s $(RKE_NODE_USER_AND_HOSTNAME):$(PERFORMANCE_TESTS_DIRECTORY) + @echo "##### DONE #####" + +run-performanceTests: + @echo "\n##### Run prometheus and grafana in lab environment #####" + ssh -i $(RKE_PRIVATE_KEY) $(RKE_NODE_USER_AND_HOSTNAME) 'bash -c "export KUBECONFIG=$(RKE_KUBECONFIG_FILE_PATH) && cd $(PERFORMANCE_TESTS_DIRECTORY) && make all"' + @echo "##### DONE #####" + +clear-performanceTests: + @echo "\n##### Stop and clear prometheus and grafana in lab environment #####" + ssh -i $(RKE_PRIVATE_KEY) $(RKE_NODE_USER_AND_HOSTNAME) 'bash -c "export KUBECONFIG=$(RKE_KUBECONFIG_FILE_PATH) && cd $(PERFORMANCE_TESTS_DIRECTORY) && make clear"' + @echo "##### DONE #####" + +remove-performanceTests: + @echo "\n##### Remove performance tests #####" + ssh -i $(RKE_PRIVATE_KEY) $(RKE_NODE_USER_AND_HOSTNAME) 'bash -c "export KUBECONFIG=$(RKE_KUBECONFIG_FILE_PATH) && rm -rf $(PERFORMANCE_TESTS_DIRECTORY)"' + @echo "##### DONE #####"
\ No newline at end of file |