27 lines
1.1 KiB
Org Mode
27 lines
1.1 KiB
Org Mode
#+TITLE: Jellyfin media server
|
|
#+AUTHOR: James Blair
|
|
#+EMAIL: mail@jamesblair.net
|
|
#+DATE: <2022-05-15 Sun 11:45>
|
|
|
|
[[https://github.com/jellyfin/jellyfin][Jellyfin]] is a Free Software Media System that puts you in control of managing and streaming your media. It is an alternative to the proprietary Emby and Plex, to provide media from a dedicated server to end-user devices via multiple apps. Jellyfin is descended from Emby's 3.5.2 release and ported to the .NET Core framework to enable full cross-platform support.
|
|
|
|
I created this helm chart for self-hosting jellyfin in a container on ~k3s~. Complete the steps below to deploy this chart.
|
|
|
|
#+NAME: Deploy jellyfin via helm
|
|
#+begin_src tmux
|
|
# Ensure jellyfin namespace exists
|
|
sudo kubectl create namespace jamma-jellyfin
|
|
|
|
# Create directories if they don't already exist
|
|
mkdir --parent "/home/${USER}/Services/jellyfin"
|
|
|
|
# Clone charts repository
|
|
cd "/home/${USER}/Services/jellyfin" && git clone https://gitea.jamma.life/jmhbnz/charts.git
|
|
|
|
# Ensure the repository is up to date
|
|
cd charts/jellyfin && git pull
|
|
|
|
# Install the chart
|
|
helm upgrade --install -n jamma-jellyfin jamma-jellyfin .
|
|
#+end_src
|