forked from open-cluster-management-io/ocm
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remind user to deploy placement controller before running some test c…
…ases (open-cluster-management-io#47) Signed-off-by: suigh <[email protected]>
- Loading branch information
suigh
authored
Nov 26, 2021
1 parent
bf225de
commit 37993e4
Showing
1 changed file
with
3 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,25 +59,17 @@ Run integration testing | |
make test-integration | ||
``` | ||
|
||
Run e2e testing. | ||
```shell | ||
go install github.com/openshift/imagebuilder/cmd/[email protected] | ||
|
||
export KUBECONFIG=</path/to/kubeconfig> | ||
|
||
make images | ||
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) | ||
|
||
kind load docker-image quay.io/open-cluster-management/placement:latest --name {your cluster name} | ||
Run e2e testing. | ||
|
||
```shell | ||
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 | ||
``` | ||
|
||
|