Skip to content
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
Expand Up @@ -27,9 +27,9 @@ ref:
documentation: |-
Default is true, which means clean up the pod/resource that kube-burner ocp created, you can set it to false to keep the resouce
- name: GC_METRICS
default: "false"
default: "true"
documentation: |-
Default is false, which means skip collecting metrics, you can set it to true to collect metrics.
Default is true, which means collect metrics, you can set it to false to skip that.
- name: PROFILE_TYPE
default: "both"
documentation: |-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,6 @@ pushd e2e-benchmarking/workloads/kube-burner-ocp-wrapper
export WORKLOAD=crd-scale

export ES_SERVER="https://$ES_USERNAME:$ES_PASSWORD@$ES_HOST"
export EXTRA_FLAGS="${KB_FLAGS} ${CRD_SCALE_EXTRA_FLAGS} --gc-metrics=false --profile-type=${PROFILE_TYPE} --iterations=${ITERATIONS}"
export EXTRA_FLAGS="${KB_FLAGS} ${CRD_SCALE_EXTRA_FLAGS} --gc-metrics=true --profile-type=${PROFILE_TYPE} --iterations=${ITERATIONS}"

./run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ ref:
documentation: |-
Default is true, which means clean up the pod/resource that kube-burner ocp created, you can set it to false to keep the resouce
- name: GC_METRICS
default: "false"
default: "true"
documentation: |-
Default is false, which means skip collecting metrics, you can set it to true to collect metrics.
Default is true, which means collect metrics, you can set it to false to skip that.
- name: PROFILE_TYPE
default: "both"
documentation: |-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,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="${ND_EXTRA_FLAGS} ${KB_FLAGS} --gc-metrics=false --pods-per-node=$PODS_PER_NODE --pod-ready-threshold=$POD_READY_THRESHOLD --profile-type=${PROFILE_TYPE} --pprof=${PPROF}"
EXTRA_FLAGS="${ND_EXTRA_FLAGS} ${KB_FLAGS} --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 @@ -72,7 +72,7 @@ fi


export WORKLOAD=udn-density-pods
EXTRA_FLAGS+="${KB_FLAGS} --local-indexing --layer3=${ENABLE_LAYER_3} --gc-metrics=false --pod-ready-threshold=$POD_READY_THRESHOLD --profile-type=${PROFILE_TYPE} --pprof=${PPROF}"
EXTRA_FLAGS+="${KB_FLAGS} --local-indexing --layer3=${ENABLE_LAYER_3} --gc-metrics=true --pod-ready-threshold=$POD_READY_THRESHOLD --profile-type=${PROFILE_TYPE} --pprof=${PPROF}"

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

Expand Down