-
Notifications
You must be signed in to change notification settings - Fork 10
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
feat(smoketest): add Opensearch as a sample app #570
Conversation
OpenSearch is an opensource Java application for searches and analytics for large data. This presents a real-world example application to test Cryostat against. Signed-off-by: Thuan Vo <[email protected]>
This is a good idea, since running all of the sample apps ends up taking more and more resources on the workstation (and more time to pull and start containers) and may not always be desired. But |
Welcome to Cryostat! 👋
Before contributing, make sure you have:
main
branch[chore, ci, docs, feat, fix, test]
To recreate commits with GPG signature
git fetch upstream && git rebase --force --gpg-sign upstream/main
Related to #403
Description of the change:
Motivation for the change:
See #403. OpenSearch is a pretty popular search engine, written Java. I think it's good to have Cryostat tested against it. I guess we can later add a minimal ElasticSearch + Kibana.
How to manually test:
To access opensearch dashboard, visit:
http://localhost:5601
with credentials:admin
/password4Opense@rch
Others
I am thinking the smoketest script can categorize the types of sample apps. For example,
basic
,basic-with-agent
,search
, etc. Then, we can runbash smoketest -t basic,search
.