helm-charts
helm-charts copied to clipboard
Publish temporal helm chart to a helm chart repository (e. g. Helm Hub)
Please publish Temporal Helm chart to a helm chart repository (such as Helm Hub), so it is easier to install it.
Brought to our attention by Kyle, thank you!
Helm hub is not actually a chart repository, and it's being replaced by Artifact Hub
For simplicity, I'd consider making this repository a helm chart repository using the chart releaser action: https://github.com/helm/chart-releaser-action
Hi @sagikazarmark , any news for this github as chart repo ?
Maybe poke the Bitnami folks to take it on?
This would be greatly appreciated, and should be easy to resolve.
The simplest approach is to use the chart-releaser-action:
https://github.com/helm/chart-releaser-action
This requires a gh-pages branch to hold the published charts.
After publishing, the temporalio helm repo can be added via:
helm repo add temporalio http://temporalio.github.io/helm-charts
LocalStack publishes their chart here:
https://github.com/localstack/helm-charts/blob/main/.github/workflows/chart-release.yaml
Their helm repo is: http://localstack.github.io/helm-charts
Some other examples:
- https://github.com/sagikazarmark/helm-charts
- https://github.com/dexidp/helm-charts
I forked and published from https://github.com/joebowbeer/temporalio-helm-charts
helm repo add temporalio https://joebowbeer.github.com/temporalio-helm-charts
I created a pull_request, which should fix this issue.
Ay update here? Seems like a simple thing to do that would save the community a bunch of time and confusion.
Bump. Hard to seriously consider this project until there's an easy way to install this chart
Pinging.
Any updates on this?
This should be an easy fix so really looking to a quick fix here.
Some references for anyone else coming along this path:
- #147
- #229
- #189
- temporalio/proposals#42
Looking forward seeing to this progress
Any update on this?
Are there any updates on this?
Having this published would also be very helpful for me as well!
Annoying that this is something that would take Temporal team a minute to setup, meanwhile forces everyone else to spend days searching for workarounds.
Here is a step by step guide on how to do it:
https://joao.neto.pt/posts/2022/github-helm-registry/
Adding another +1 that an officially supported published chart would be nice..!
+1
Any update here?
+1
The most asked functionality and the simplest 😒
Is this project dead?
Oh lord, it's been years! Is there any way of implementing this? People offered support and examples everywhere!
Seriously, save yourself time and write your own Helm chart.
Took me one afternoon, ... while before this I've spent weeks debugging issues with Temporal provided Helm chart.
A similar issue exists, it would be better to close one so that there is a single place to comment on the Helm chart publication https://github.com/temporalio/helm-charts/issues/229
If you (Temporal) want people to use their product you must spend bandwidth on action items like this. The fact that it was not addressed for years show how unreliable they are.
Hit the same issue. This is my workaround ... Copy contents of the release you want into a folder (the the example folder is named 1.20.3) and place helmfile outside with the following contents...
repositories:
- name: stable
url: https://charts.helm.sh/stable
- name: incubator
url: https://charts.helm.sh/incubator
- name: prometheus
url: https://prometheus-community.github.io/helm-charts
- name: elastic
url: https://helm.elastic.co
- name: grafana
url: https://grafana.github.io/helm-charts
releases:
- name: temporal
namespace: temporal
chart: ./1.20.3
version: "1.20.3"
values:
- "1.20.3/values.yaml"
Not sure if you considered Github Pages as a possible solution, but Prefect is currently using it in case you need an example: https://github.com/PrefectHQ/prefect-helm
out of curiosity - what is preventing you from adding few lines to pipeline to publish helm to the pages?