Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion perfdash/Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all: push

# See deployment.yaml for the version currently running-- bump this ahead before rebuilding!
TAG?=2.55
TAG?=2.56

REPO?=gcr.io/k8s-staging-perf-tests

Expand Down
29 changes: 20 additions & 9 deletions perfdash/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -694,16 +694,27 @@ var (
},
}

etcdAPIBenchmarkDescription = TestDescriptions{
"EtcdAPIPerformance": {
"Benchmark ": []TestDescription{{
Name: "benchmark",
OutputFilePrefix: "EtcdAPI",
Parser: parsePerfData,
}},
},
}

jobTypeToDescriptions = map[string]TestDescriptions{
"performance": performanceDescriptions,
"benchmark": benchmarkDescriptions,
"networking": networkingDescriptions,
"dnsBenchmark": dnsBenchmarkDescriptions,
"storage": storageDescriptions,
"throughput": throughputDescriptions,
"windows": windowsDescriptions,
"watchlist": watchListDescriptions,
"benchmarkList": benchmarkListDescription,
"performance": performanceDescriptions,
"benchmark": benchmarkDescriptions,
"networking": networkingDescriptions,
"dnsBenchmark": dnsBenchmarkDescriptions,
"storage": storageDescriptions,
"throughput": throughputDescriptions,
"windows": windowsDescriptions,
"watchlist": watchListDescriptions,
"benchmarkList": benchmarkListDescription,
"etcdAPIBenchmark": etcdAPIBenchmarkDescription,
}
)

Expand Down
2 changes: 1 addition & 1 deletion perfdash/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: perfdash
image: gcr.io/k8s-staging-perf-tests/perfdash:2.55
image: gcr.io/k8s-staging-perf-tests/perfdash:2.56
command:
- /perfdash
- --www=true
Expand Down