Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PERFSCALE-1802] Enable HTTP2 for reencrypt/passthrough terminations #709

Merged
merged 2 commits into from
Jul 15, 2024
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
23 changes: 23 additions & 0 deletions workloads/ingress-perf/config/standard-classic-rosa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,26 @@
requestTimeout: 10s
delay: 10s

- termination: reencrypt
connections: 200
samples: 2
duration: 3m
path: /1024.html
concurrency: 5
tool: hloader
serverReplicas: 45
requestTimeout: 10s
tuningPatch: '{"metadata":{"annotations": {"ingress.operator.openshift.io/default-enable-http2": "true"}}}'
http2: true

- termination: passthrough
connections: 200
samples: 2
duration: 3m
path: /1024.html
concurrency: 5
tool: hloader
serverReplicas: 45
requestTimeout: 10s
http2: true

23 changes: 23 additions & 0 deletions workloads/ingress-perf/config/standard-scalelab.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,26 @@
requestTimeout: 10s
delay: 10s

- termination: reencrypt
connections: 200
samples: 2
duration: 3m
path: /1024.html
concurrency: 5
tool: hloader
serverReplicas: 45
requestTimeout: 10s
tuningPatch: '{"metadata":{"annotations": {"ingress.operator.openshift.io/default-enable-http2": "true"}}}'
http2: true

- termination: passthrough
connections: 200
samples: 2
duration: 3m
path: /1024.html
concurrency: 5
tool: hloader
serverReplicas: 45
requestTimeout: 10s
http2: true

23 changes: 23 additions & 0 deletions workloads/ingress-perf/config/standard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,3 +58,26 @@
requestTimeout: 10s
delay: 10s

- termination: reencrypt
connections: 200
samples: 2
duration: 3m
path: /1024.html
concurrency: 18
tool: hloader
serverReplicas: 45
requestTimeout: 10s
tuningPatch: '{"metadata":{"annotations": {"ingress.operator.openshift.io/default-enable-http2": "true"}}}'
http2: true

- termination: passthrough
connections: 200
samples: 2
duration: 3m
path: /1024.html
concurrency: 18
tool: hloader
serverReplicas: 45
requestTimeout: 10s
http2: true

2 changes: 1 addition & 1 deletion workloads/ingress-perf/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ LOG_LEVEL=${LOG_LEVEL:-info}
if [ "$INGRESS_PERF_VERSION" = "default" ]; then
unset INGRESS_PERF_VERSION
fi
INGRESS_PERF_VERSION=${INGRESS_PERF_VERSION:-0.4.2}
INGRESS_PERF_VERSION=${INGRESS_PERF_VERSION:-0.4.3}
CONFIG=${CONFIG:?}
BASELINE_UUID=${BASELINE_UUID:-}
BASELINE_INDEX=${BASELINE_INDEX:-ingress-performance-baseline}
Expand Down