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-hel...lease.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:
Not the nicest way but in the future you can swap the "." for jellyfin/jellyfin once a repo is made.
https://github.com/jellyfin/jellyfin-hel...lease.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.