File tree Expand file tree Collapse file tree 3 files changed +7
-65
lines changed Expand file tree Collapse file tree 3 files changed +7
-65
lines changed Original file line number Diff line number Diff line change @@ -47,6 +47,11 @@ pushd "${M3_DEV_ENV_PATH}" || exit 1
4747make
4848popd || exit 1
4949
50+ # if running a scalability test run DevEnv with fakeIPA
51+ if [[ ${GINKGO_FOCUS:- } == " scalability" ]]; then
52+ openssl req -x509 -subj " /CN=Kubernetes API" -new -newkey rsa:2048 -nodes -keyout " /tmp/ca.key" -sha256 -days 3650 -out " /tmp/ca.crt"
53+ openssl req -x509 -subj " /CN=ETCD CA" -new -newkey rsa:2048 -nodes -keyout " /tmp/etcd.key" -sha256 -days 3650 -out " /tmp/etcd.crt"
54+ fi
5055# Binaries checked below should have been installed by metal3-dev-env make.
5156# Verify they are available and have correct versions.
5257PATH=$PATH :/usr/local/go/bin
Original file line number Diff line number Diff line change 6464
6565# Scalability test environment vars and config
6666if [[ ${GINKGO_FOCUS:- } == " bmo-scalability" ]]; then
67- export NUM_NODES=${NUM_NODES:- " 100 " }
68- export BMH_BATCH_SIZE=${BMH_BATCH_SIZE:- " 20 " }
67+ export NUM_NODES=${NUM_NODES:- " 2 " }
68+ export BMH_BATCH_SIZE=${BMH_BATCH_SIZE:- " 2 " }
6969fi
7070
7171# Integration test environment vars and config
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments