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

Added script for Kiali perf tests run. #1

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
3 changes: 3 additions & 0 deletions data-plane/kiali/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@

# ignore kiali repository content
kiali
21 changes: 21 additions & 0 deletions data-plane/kiali/run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

git clone https://github.com/kiali/kiali.git
cd kiali
npm install cypress --save-dev
yarn add cypress --dev
cd frontend
npm install cypress --save-dev
yarn add cypress --dev
cd ..

KIALI_ROUTE=$(oc get route kiali -n ${SMCP_NAMESPACE} -o=jsonpath='{.spec.host}')
export CYPRESS_BASE_URL="https://${KIALI_ROUTE}"
export CYPRESS_USERNAME=${OCP_CRED_USR}
export CYPRESS_PASSWD=${OCP_CRED_PSW}
export CYPRESS_AUTH_PROVIDER="kube:admin"


chmod +x hack/run-performance-tests.sh

./hack/run-performance-tests.sh