From 9f1751d6f5c0caee5b24fff8cbe700f9399ab8f2 Mon Sep 17 00:00:00 2001 From: Julien Cabillot Date: Sat, 12 Mar 2022 20:23:57 -0500 Subject: [PATCH] feat: init --- charts/jellyfin/.helmignore | 26 ++++++++++++++++ charts/jellyfin/Chart.yaml | 27 +++++++++++++++++ charts/jellyfin/README.md | 2 ++ charts/jellyfin/templates/NOTES.txt | 1 + charts/jellyfin/templates/common.yaml | 5 ++++ charts/jellyfin/values.yaml | 43 +++++++++++++++++++++++++++ 6 files changed, 104 insertions(+) create mode 100644 charts/jellyfin/.helmignore create mode 100644 charts/jellyfin/Chart.yaml create mode 100644 charts/jellyfin/README.md create mode 100644 charts/jellyfin/templates/NOTES.txt create mode 100644 charts/jellyfin/templates/common.yaml create mode 100644 charts/jellyfin/values.yaml diff --git a/charts/jellyfin/.helmignore b/charts/jellyfin/.helmignore new file mode 100644 index 0000000..4379e2b --- /dev/null +++ b/charts/jellyfin/.helmignore @@ -0,0 +1,26 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ +# OWNERS file for Kubernetes +OWNERS +# helm-docs templates +*.gotmpl diff --git a/charts/jellyfin/Chart.yaml b/charts/jellyfin/Chart.yaml new file mode 100644 index 0000000..14d7644 --- /dev/null +++ b/charts/jellyfin/Chart.yaml @@ -0,0 +1,27 @@ +apiVersion: v2 + +description: Helm chart for jellyfin +name: jellyfin +type: application +version: 0.0.1 +kubeVersion: ">=1.16.0-0" +keywords: +- jellyfin +home: https://scm.docker.cabillot.eu/web/jellyfin-helm/ +#sources: +#- https://github.com/filebrowser/filebrowser +maintainers: +- name: Julien Cabillot + email: dockerimages@cabillot.eu + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +# It is recommended to use it with quotes. +#appVersion: "1.16.0" +appVersion: "latest" + +dependencies: +- name: common + repository: "https://scm.docker.cabillot.eu/perso/helm-library-common/raw/branch/master/" + version: 4.2.0 diff --git a/charts/jellyfin/README.md b/charts/jellyfin/README.md new file mode 100644 index 0000000..c40e26a --- /dev/null +++ b/charts/jellyfin/README.md @@ -0,0 +1,2 @@ +# filebrowser-helm + diff --git a/charts/jellyfin/templates/NOTES.txt b/charts/jellyfin/templates/NOTES.txt new file mode 100644 index 0000000..90f7b65 --- /dev/null +++ b/charts/jellyfin/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "common.notes.defaultNotes" . -}} diff --git a/charts/jellyfin/templates/common.yaml b/charts/jellyfin/templates/common.yaml new file mode 100644 index 0000000..64e027a --- /dev/null +++ b/charts/jellyfin/templates/common.yaml @@ -0,0 +1,5 @@ +{{/* Make sure all variables are set properly */}} +{{- include "common.values.setup" . }} + +{{/* Render the templates */}} +{{ include "common.all" . }} diff --git a/charts/jellyfin/values.yaml b/charts/jellyfin/values.yaml new file mode 100644 index 0000000..3e0cf4b --- /dev/null +++ b/charts/jellyfin/values.yaml @@ -0,0 +1,43 @@ +# +# IMPORTANT NOTE +# +# This chart inherits from our common library chart. You can check the default values/options here: +# https://scm.docker.cabillot.eu/perso/helm-library-common +# + +image: + repository: docker.io/jellyfin/jellyfin + tag: "10.7.7" + pullPolicy: Always + +env: + TZ: America/New_York + +service: + main: + ports: + http: + port: 8096 + +ingress: + main: + enabled: false + +automountServiceAccountToken: false + +persistence: + config: + enabled: false + cache: + enabled: false + mountPath: "/cache" + media: + enabled: false + enabled: true + type: custom + volumeSpec: + nfs: + server: "odroidhc2.local" + path: "/mnt/musique" + readOnly: true + mountPath: "/media"