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

Adding OLS load tests #60530

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
@@ -1,20 +1,112 @@
build_root:
image_stream_tag:
name: release
namespace: openshift
tag: golang-1.21
name: ci-tools-build-root
namespace: ci
tag: latest
images:
- dockerfile_path: prow/Dockerfile
to: ols-load-generator-ci
promotion:
to:
- namespace: ci
tag: latest
releases:
latest:
candidate:
product: ocp
stream: nightly
version: "4.18"
resources:
'*':
limits:
memory: 4Gi
requests:
cpu: 100m
memory: 200Mi
tests:
- as: unit
commands: "echo \"no test commands\" \n"
container:
from: src
- as: ols-load-test-10workers
cron: 0 0 1-7,15-21 * 1
steps:
allow_skip_on_success: true
cluster_profile: aws-perfscale
env:
BASE_DOMAIN: perfscale.devcluster.openshift.com
COMPUTE_NODE_REPLICAS: "3"
COMPUTE_NODE_TYPE: m6i.xlarge
OLS_TEST_DURATIONS: 5m,10m,20m
OLS_TEST_WORKERS: "10"
OPENSHIFT_INFRA_NODE_INSTANCE_TYPE: r5.xlarge
ZONES_COUNT: "3"
test:
- ref: ols-load-generator-tests
workflow: openshift-qe-installer-aws
timeout: 8h0m0s
- as: ols-load-test-25workers
cron: 0 6 1-7,15-21 * 1
steps:
allow_skip_on_success: true
cluster_profile: aws-perfscale
env:
BASE_DOMAIN: perfscale.devcluster.openshift.com
COMPUTE_NODE_REPLICAS: "3"
COMPUTE_NODE_TYPE: m6i.xlarge
OLS_TEST_DURATIONS: 5m,10m,20m
OLS_TEST_WORKERS: "25"
OPENSHIFT_INFRA_NODE_INSTANCE_TYPE: r5.xlarge
ZONES_COUNT: "3"
test:
- ref: ols-load-generator-tests
workflow: openshift-qe-installer-aws
timeout: 8h0m0s
- as: ols-load-test-50workers
cron: 0 12 1-7,15-21 * 1
steps:
allow_skip_on_success: true
cluster_profile: aws-perfscale
env:
BASE_DOMAIN: perfscale.devcluster.openshift.com
COMPUTE_NODE_REPLICAS: "3"
COMPUTE_NODE_TYPE: m6i.xlarge
OLS_TEST_DURATIONS: 5m,10m,20m
OLS_TEST_WORKERS: "50"
OPENSHIFT_INFRA_NODE_INSTANCE_TYPE: r5.xlarge
ZONES_COUNT: "3"
test:
- ref: ols-load-generator-tests
workflow: openshift-qe-installer-aws
timeout: 8h0m0s
- as: ols-load-test-100workers
cron: 0 18 1-7,15-21 * 1
steps:
allow_skip_on_success: true
cluster_profile: aws-perfscale
env:
BASE_DOMAIN: perfscale.devcluster.openshift.com
COMPUTE_NODE_REPLICAS: "3"
COMPUTE_NODE_TYPE: m6i.xlarge
OLS_TEST_DURATIONS: 5m,10m,20m
OLS_TEST_WORKERS: "100"
OPENSHIFT_INFRA_NODE_INSTANCE_TYPE: r5.xlarge
ZONES_COUNT: "3"
test:
- ref: ols-load-generator-tests
workflow: openshift-qe-installer-aws
timeout: 8h0m0s
- always_run: false
as: ols-load-test-1000workers
steps:
allow_skip_on_success: true
cluster_profile: aws-perfscale
env:
BASE_DOMAIN: perfscale.devcluster.openshift.com
COMPUTE_NODE_REPLICAS: "3"
COMPUTE_NODE_TYPE: m6i.xlarge
OLS_TEST_DURATIONS: 5m
OLS_TEST_WORKERS: "1000"
OPENSHIFT_INFRA_NODE_INSTANCE_TYPE: r5.xlarge
ZONES_COUNT: "3"
test:
- ref: ols-load-generator-tests
workflow: openshift-qe-installer-aws
timeout: 8h0m0s
zz_generated_metadata:
branch: main
org: openshift
Expand Down
Loading