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
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ tests:
ENABLE_LAYER_3: "false"
ES_TYPE: qe
IGNORE_JOB_ITERATIONS: "true"
ND_CNI_EXTRA_FLAGS: --churn-mode=objects --churn-delay=1m --churn-percent=50
--churn-cycles=2
ND_EXTRA_FLAGS: --churn-mode=objects --churn-delay=1m --churn-percent=50 --churn-cycles=2
OUTPUT_FORMAT: JUNIT
RUN_ORION: "true"
UDN_ITERATION_MULTIPLIER: "12"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ tests:
ENABLE_LAYER_3: "false"
ES_TYPE: qe
IGNORE_JOB_ITERATIONS: "true"
ND_CNI_EXTRA_FLAGS: --churn-mode=objects --churn-delay=1m --churn-percent=50
--churn-cycles=2
ND_EXTRA_FLAGS: --churn-mode=objects --churn-delay=1m --churn-percent=50 --churn-cycles=2
OUTPUT_FORMAT: JUNIT
RUN_ORION: "true"
UDN_ITERATION_MULTIPLIER: "12"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ tests:
ENABLE_LOCAL_INDEX: "true"
ES_TYPE: qe
IGNORE_JOB_ITERATIONS: "true"
ND_CNI_EXTRA_FLAGS: --churn-mode=objects --churn-delay=1m --churn-percent=50
--churn-cycles=2
ND_EXTRA_FLAGS: --churn-mode=objects --churn-delay=1m --churn-percent=50 --churn-cycles=2
OUTPUT_FORMAT: JUNIT
RUN_ORION: "true"
UDN_ITERATION_MULTIPLIER: "12"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ tests:
cluster_profile: aws-stackrox
env:
BASE_DOMAIN: perfscale.rox.systems
CD_V2_EXTRA_FLAGS: --churn-duration=20m --timeout=8h --metrics-profile metrics-aggregated.yml,https://raw.githubusercontent.com/stackrox/stackrox/refs/heads/master/tests/performance/scale/config/metrics-acs.yml
COMPUTE_NODE_REPLICAS: "24"
EXTRA_FLAGS: --churn-duration=20m --timeout=8h --metrics-profile metrics-aggregated.yml,https://raw.githubusercontent.com/stackrox/stackrox/refs/heads/master/tests/performance/scale/config/metrics-acs.yml
PODS_PER_NODE: "240"
ROX_SCANNER_V4_ENABLED: "true"
SCANNER_V4_MATCHER_READINESS: vulnerability
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@ fi

oc config view
oc projects
python --version
pushd /tmp
python -m virtualenv ./venv_qe
source ./venv_qe/bin/activate

UUID=$(uuidgen)
ES_SECRETS_PATH=${ES_SECRETS_PATH:-/secret}
Expand Down Expand Up @@ -62,7 +59,7 @@ TAG_OPTION="--branch $(if [ "$E2E_VERSION" == "default" ]; then echo "$LATEST_TA
git clone $REPO_URL $TAG_OPTION --depth 1
pushd e2e-benchmarking/workloads/kube-burner-ocp-wrapper
export WORKLOAD=node-density
EXTRA_FLAGS="--local-indexing --gc-metrics=true --pods-per-node=$PODS_PER_NODE --pod-ready-threshold=$POD_READY_THRESHOLD --profile-type=${PROFILE_TYPE} --pprof=${PPROF}"
EXTRA_FLAGS="${ND_EXTRA_FLAGS} --local-indexing --gc-metrics=true --pods-per-node=$PODS_PER_NODE --pod-ready-threshold=$POD_READY_THRESHOLD --profile-type=${PROFILE_TYPE} --pprof=${PPROF}"

export ES_SERVER="https://$ES_USERNAME:$ES_PASSWORD@$ES_HOST"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ ref:
cpu: 100m
memory: 100Mi
env:
- name: EXTRA_FLAGS
- name: ND_EXTRA_FLAGS
default: ""
documentation: |-
Add args for e2e-benchmarking kube-burner-ocp cmd.
Extra flags for node-density workload
- name: E2E_VERSION
default: "default"
documentation: |-
Expand Down