Jellyfin Forum
jellyfin-helm - How to - Printable Version

+- Jellyfin Forum (https://forum.jellyfin.org)
+-- Forum: Support (https://forum.jellyfin.org/f-support)
+--- Forum: General Questions (https://forum.jellyfin.org/f-general-questions)
+--- Thread: jellyfin-helm - How to (/t-jellyfin-helm-how-to)



jellyfin-helm - How to - AuqW9cQ - 2024-08-09

Hello, 

i found the (official) Jellyfin Helm Repo here:
https://github.com/jellyfin/jellyfin-helm

But there is no description how to use this.

I tried a few times to find out the chart-adress without success.

Is there a how to use this helm Chart or does someone use this chart and can tell me how to use it?


RE: jellyfin-helm - How to - Efficient_Good_5784 - 2024-08-09

The readme is in the "charts/jellyfin" folder.

https://github.com/jellyfin/jellyfin-helm/tree/master/charts/jellyfin


RE: jellyfin-helm - How to - AuqW9cQ - 2024-08-27

Thanks for your answer @Efficient_Good_5784

I´ve already found and read the ReadMe, but there is no answer for my question.

How ist the address for adding the repo?

Code:
helm repo add https://???



RE: jellyfin-helm - How to - ash - 2024-08-27

I was just looking for the exact same thing, I cannot see a repo already made but I can see the workflow defined here to build and publish the Helm chart:

https://github.com/jellyfin/jellyfin-helm/blob/master/.github/workflows/helm_chart_release.yaml

Looks like it should be publishing to the container registry but don't see one within the repo.

Alternatively I guess you can just clone the repo, cd to charts/jellyfin and then install like so:


ash@ballig:~/helm/jellyfin-helm/charts/jellyfin$ helm install jellyfin . -n media-stack --create-namespace
NAME: jellyfin
LAST DEPLOYED: Tue Aug 27 17:18:57 2024
NAMESPACE: media-stack
STATUS: deployed
REVISION: 1
TEST SUITE: None
NOTES:
1. Get the application URL by running these commands:
  export POD_NAME=$(kubectl get pods --namespace media-stack -l "app.kubernetes.io/name=jellyfin,app.kubernetes.io/instance=jellyfin" -o jsonpath="{.items[0].metadata.name}")
  Visit http://127.0.0.1:8080 to use your application
  kubectl port-forward $POD_NAME 8080:80


Not the nicest way but in the future you can swap the "." for jellyfin/jellyfin once a repo is made.


RE: jellyfin-helm - How to - AuqW9cQ - 2024-08-28

Oh, what a pity...

Then I'll probably use another one until there's an official repo.