forked from kubernetes-retired/contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
56 lines (45 loc) · 1.92 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/*
Copyright 2016 The Kubernetes Authors All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"k8s.io/contrib/test-utils/utils"
)
// To add new e2e test support, you need to:
// 1) Transform e2e performance test result into *PerfData* in k8s/kubernetes/test/e2e/perftype,
// and print the PerfData in e2e test log.
// 2) Add corresponding bucket, job and test into *TestConfig*.
// Tests is a map from test description to test name.
type Tests map[string]string
// Jobs is a map from job name to all supported tests in the job.
type Jobs map[string]Tests
// Buckets is a map from bucket url to all supported jobs in the bucket.
type Buckets map[string]Jobs
var (
// TestConfig contains all the test PerfDash supports now. Downloader will download and
// analyze build log from all these Jobs, and parse the data from all these Test.
// Notice that all the tests should have different name for now.
TestConfig = Buckets{
utils.GoogleBucketURL: Jobs{
"kubernetes-e2e-gce-scalability": Tests{
"[Feature:Performance] should allow starting 30 pods per node": "Density",
"[Feature:Performance] should be able to handle 30 pods per node": "Load",
},
"kubernetes-e2e-gce-serial": Tests{
"resource tracking for 35 pods per node": "Kubelet Perf 35",
"resource tracking for 100 pods per node": "Kubelet Perf 100",
},
},
}
// TestNameSeparator is the prefix of time name.
TestNameSeparator = "[It] "
)