From 37993e413b6546017167d59f37ee6b0d42ddb194 Mon Sep 17 00:00:00 2001 From: suigh Date: Fri, 26 Nov 2021 10:50:09 +0800 Subject: [PATCH] Remind user to deploy placement controller before running some test cases (#47) Signed-off-by: suigh --- CONTRIBUTING.md | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f9f1fdbc5..796fc82af 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -59,25 +59,17 @@ Run integration testing make test-integration ``` +Before running e2e/scalability testing, deploy the placement controller with corresponding steps from [PLACEMENT Doc](https://github.com/open-cluster-management-io/placement#deploy-the-placement-controller) + Run e2e testing. + ```shell -go install github.com/openshift/imagebuilder/cmd/imagebuilder@v1.2.1 - -export KUBECONFIG= - -make images - -kind load docker-image quay.io/open-cluster-management/placement:latest --name {your cluster name} - make test-e2e ``` Run scalability testing if your PR has impact on the scalability ```shell -Deploy the placement controller with corresponding steps from [PLACEMENT Doc](https://github.com/open-cluster-management-io/placement#deploy-the-placement-controller) - - make test-scalability ```