helm-charts icon indicating copy to clipboard operation
helm-charts copied to clipboard

Publish temporal helm chart to a helm chart repository (e. g. Helm Hub)

Open markmark206 opened this issue 5 years ago • 14 comments

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!

markmark206 avatar Jul 14 '20 23:07 markmark206

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

sagikazarmark avatar Oct 03 '20 11:10 sagikazarmark

Hi @sagikazarmark , any news for this github as chart repo ?

lerminou avatar Dec 08 '20 20:12 lerminou

Maybe poke the Bitnami folks to take it on?

loopingrage avatar Feb 15 '21 21:02 loopingrage

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

joebowbeer avatar Mar 17 '21 17:03 joebowbeer

Some other examples:

  • https://github.com/sagikazarmark/helm-charts
  • https://github.com/dexidp/helm-charts

sagikazarmark avatar Mar 17 '21 18:03 sagikazarmark

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.

joebowbeer avatar Mar 17 '21 18:03 joebowbeer

Ay update here? Seems like a simple thing to do that would save the community a bunch of time and confusion.

loopingrage avatar Apr 30 '21 13:04 loopingrage

Bump. Hard to seriously consider this project until there's an easy way to install this chart

abatilo avatar Aug 05 '21 03:08 abatilo

Pinging.

hazcod avatar Sep 14 '21 06:09 hazcod

Any updates on this?

ErlanBelekov avatar Feb 02 '22 12:02 ErlanBelekov

This should be an easy fix so really looking to a quick fix here.

hazcod avatar Feb 02 '22 12:02 hazcod

Some references for anyone else coming along this path:

  • #147
  • #229
  • #189
  • temporalio/proposals#42

Looking forward seeing to this progress

franklinkim avatar Apr 15 '22 09:04 franklinkim

Any update on this?

IkePCampbell avatar Sep 01 '22 19:09 IkePCampbell

Are there any updates on this?

arthosdevelops avatar Sep 14 '22 07:09 arthosdevelops

Having this published would also be very helpful for me as well!

phudtran avatar Dec 08 '22 04:12 phudtran

Annoying that this is something that would take Temporal team a minute to setup, meanwhile forces everyone else to spend days searching for workarounds.

gajus avatar Jan 19 '23 16:01 gajus

Here is a step by step guide on how to do it:

https://joao.neto.pt/posts/2022/github-helm-registry/

gajus avatar Jan 19 '23 16:01 gajus

Adding another +1 that an officially supported published chart would be nice..!

thekarpathia avatar Feb 28 '23 21:02 thekarpathia

+1

laertispappas avatar Mar 08 '23 14:03 laertispappas

Any update here?

PeteMac88 avatar Mar 09 '23 10:03 PeteMac88

+1

moolitayer avatar Mar 09 '23 15:03 moolitayer

The most asked functionality and the simplest 😒

lerminou avatar Mar 09 '23 15:03 lerminou

Is this project dead?

ukd1 avatar Mar 17 '23 22:03 ukd1

Oh lord, it's been years! Is there any way of implementing this? People offered support and examples everywhere!

smartinov avatar Apr 28 '23 08:04 smartinov

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.

gajus avatar Apr 28 '23 14:04 gajus

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

froblesmartin avatar May 28 '23 11:05 froblesmartin

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.

vishwa-trulioo avatar Jun 12 '23 15:06 vishwa-trulioo

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"

aisac-clearstreet avatar Jun 14 '23 14:06 aisac-clearstreet

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

jverce avatar Jul 06 '23 02:07 jverce

out of curiosity - what is preventing you from adding few lines to pipeline to publish helm to the pages?

samm-git avatar Jul 20 '23 19:07 samm-git