Merge pull request #47713 from ravisantoshgudimetla/scheduler_perf_test_fix

Automatic merge from submit-queue

Small fix for number of pods and nodes in test function

**What this PR does / why we need it**:
Small fix to have correct pods and nodes in test function.
**Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #

**Special notes for your reviewer**:
Scheduler perf, nodes and pods number fix for 100 nodes 3k pods.
**Release note**:

```release-note
NONE
```
This commit is contained in:
Kubernetes Submit Queue 2017-07-07 13:04:41 -07:00 committed by GitHub
commit 823f31ec91

View File

@ -42,7 +42,7 @@ func TestSchedule100Node3KPods(t *testing.T) {
if testing.Short() {
t.Skip("Skipping because we want to run short tests")
}
config := getBaseConfig(1000, 30000)
config := getBaseConfig(100, 3000)
writePodAndNodeTopologyToConfig(config)
min := schedulePods(config)
if min < threshold3K {