-
-
Notifications
You must be signed in to change notification settings - Fork 36
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
Helm chart #436
Comments
I've prepared PR #437 with the chart generation. Would be great if you add it to your release pipeline. |
Thanks for your contribution! Then we'll have to:
What do you think ? |
I think the best option is to use https://github.com/helm/chart-releaser-action as a starting point. |
Also, a possible way is to push the chart package to GitHub's package registry. Here is an example from my fork repo:
$ make helm
$ helm package charts/temporal-operator
$ helm registry login ghcr.io --username ganievs
$ helm push ./temporal-operator-0.1.0.tgz oci://ghcr.io/ganievs/temporal-operator
$ helm template temporal-operator oci://ghcr.io/ganievs/temporal-operator/temporal-operator --version 0.1.0
$ helm install temporal-operator oci://ghcr.io/ganievs/temporal-operator/temporal-operator --version 0.1.0 |
Good idea!
Don't you want to update the pull request with my previous comment ? Then we could add the chart to the oci repo ! Thanks again for your work 👍 |
Ok, will do |
Hi @alexandrevilain! So, I rebased from the main and add pushed generated chart in the PR. |
Cool! Thanks @ganievs ! I'll take time to carefully review it after the 0.15.0 release. But I'll try provide valuable comments on the PR 👍 |
Now that:
|
Hi @alexandrevilain! First of all, I come to say you've done great work!
I made a test setup of the operator and would like to use it as the main way to manage our Temporal clusters in the future and it would be great if the operator will have the ability to install it through the helm.
The text was updated successfully, but these errors were encountered: