-
Notifications
You must be signed in to change notification settings - Fork 1
Tips on updating OperatorHub
Scott Trent edited this page Jun 5, 2024
·
3 revisions
After making changes to the SusQL Operator, we will want to then update the images available from the Community OperatorHub.
- Bump up the version in
susql-operator/VERSION
make bundle
- Push updated files to them
main
branch of thesustainable-computing-io/susql-operator
repository. - Clone
https://github.com/k8s-operatorhub/community-operators
- Create a directory in
operators/susql-operator
in yourcommunity-operators
fork that matches thesusql-operator/VERSION
file. e.g., if you are creating version0.0.42
thenmkdir operators/susql-operator/0.0.42
- Copy directory structure under
susql-operator/bundle
tooperators/susql-operator/<yourversion>
e.g.,cd operators/susql-operator/0.0.42 && cp -r ~/git/susql-operator/bundle/* .
- Do the usual
git add
,git commit -sm
,git push
in yourcommunity-operators
fork. - Click on the
contribute
button in your github community-operator fork, and follow the process.