-
Notifications
You must be signed in to change notification settings - Fork 64
🌱 Make generate-asciidemo.sh generic #1755
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
🌱 Make generate-asciidemo.sh generic #1755
Conversation
✅ Deploy Preview for olmv1 ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
@@ -36,4 +36,3 @@ curl -k https://localhost:8081/catalogs/operatorhubio/api/v1/all | jq -s '.[] | | |||
curl -k https://localhost:8081/catalogs/operatorhubio/api/v1/all | jq -s '.[] | select(.schema == "olm.channel") | select(.package == "wavefront") | .name' | |||
# check what bundles are included in the wavefront package | |||
curl -k https://localhost:8081/catalogs/operatorhubio/api/v1/all | jq -s '.[] | select(.schema == "olm.bundle") | select(.package == "wavefront") | .name' | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍 It is OK, but we might want to have a complete demo instead of keep just for catalogd.
However, until there, why not? Who knows, we change the intention as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The intention here is that I'm creating demo scripts for the own/single namespace install mode feature, which I'll add to the demos directory. I'll probably add a Makefile at some point.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm cancel
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm cancel |
93208d6
to
be8c527
Compare
be8c527
to
fc58782
Compare
Signed-off-by: Per G. da Silva <[email protected]>
3d75a99
to
d25b00b
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1755 +/- ##
=======================================
Coverage 67.45% 67.45%
=======================================
Files 61 61
Lines 5245 5245
=======================================
Hits 3538 3538
Misses 1446 1446
Partials 261 261
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
Description
Makes generate-asciidemo.sh generic to make it easier to create demo scripts and generate asciinema out of them for PRs and demos, etc.
The motivation for this change is: I was creating a demo script for the single/own namespace feature and noticed duplication in the "generate_asciinema" scripts where the only difference was the demo script being called. Hopefully, this little script helps us make demos easier =D
Reviewer Checklist