Skip to content

Commit 03af9e9

Browse files
committed
Add request count to watchlist tests
Signed-off-by: Marcel Zieba <[email protected]>
1 parent 63768bb commit 03af9e9

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

perfdash/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
all: push
22

33
# See deployment.yaml for the version currently running-- bump this ahead before rebuilding!
4-
TAG?=2.50
4+
TAG?=2.51
55

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

@@ -19,7 +19,7 @@ run: perfdash
1919
--address=0.0.0.0:8080 \
2020
--builds=20 \
2121
--force-builds \
22-
--githubConfigDir=https://api.github.com/repos/kubernetes/perf-tests/contents/perfdash/test
22+
--configPath=test/jobs.yaml
2323

2424
# Use buildkit to have "COPY --chmod=" support (availability of it in "regular" docker build depends on docker version).
2525
.PHONY: container

perfdash/config.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -658,6 +658,11 @@ var (
658658
OutputFilePrefix: "APIResponsivenessPrometheus_simple",
659659
Parser: parsePerfData,
660660
}},
661+
"LoadRequestCount_PrometheusSimple": []TestDescription{{
662+
Name: "watch-list",
663+
OutputFilePrefix: "APIResponsivenessPrometheus_simple",
664+
Parser: parseRequestCountData,
665+
}},
661666
},
662667
}
663668

perfdash/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
spec:
1717
containers:
1818
- name: perfdash
19-
image: gcr.io/k8s-staging-perf-tests/perfdash:2.50
19+
image: gcr.io/k8s-staging-perf-tests/perfdash:2.51
2020
command:
2121
- /perfdash
2222
- --www=true

0 commit comments

Comments
 (0)