From 385f220edb2b92a90149b5a6d19a8b7ffc71cb2d Mon Sep 17 00:00:00 2001 From: Julien Cabillot Date: Thu, 3 Mar 2022 13:03:54 -0500 Subject: [PATCH] feat: first import --- charts/calibreweb/.helmignore | 26 +++++++++++++++ charts/calibreweb/Chart.yaml | 27 ++++++++++++++++ charts/calibreweb/README.md | 3 ++ charts/calibreweb/templates/NOTES.txt | 1 + charts/calibreweb/templates/common.yaml | 5 +++ charts/calibreweb/values.yaml | 42 +++++++++++++++++++++++++ 6 files changed, 104 insertions(+) create mode 100644 charts/calibreweb/.helmignore create mode 100644 charts/calibreweb/Chart.yaml create mode 100644 charts/calibreweb/README.md create mode 100644 charts/calibreweb/templates/NOTES.txt create mode 100644 charts/calibreweb/templates/common.yaml create mode 100644 charts/calibreweb/values.yaml diff --git a/charts/calibreweb/.helmignore b/charts/calibreweb/.helmignore new file mode 100644 index 0000000..4379e2b --- /dev/null +++ b/charts/calibreweb/.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/calibreweb/Chart.yaml b/charts/calibreweb/Chart.yaml new file mode 100644 index 0000000..41d749a --- /dev/null +++ b/charts/calibreweb/Chart.yaml @@ -0,0 +1,27 @@ +apiVersion: v2 + +description: Helm chart for calibre-web +name: calibre-web +type: application +version: 0.0.1 +kubeVersion: ">=1.16.0-0" +keywords: +- calibre-web +- calibreweb +- calibre +home: https://scm.docker.cabillot.eu/web/calibreweb-helm/ +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/calibreweb/README.md b/charts/calibreweb/README.md new file mode 100644 index 0000000..c18b900 --- /dev/null +++ b/charts/calibreweb/README.md @@ -0,0 +1,3 @@ +# calibreweb-helm + +Doc: https://docs.linuxserver.io/images/docker-calibre-web diff --git a/charts/calibreweb/templates/NOTES.txt b/charts/calibreweb/templates/NOTES.txt new file mode 100644 index 0000000..90f7b65 --- /dev/null +++ b/charts/calibreweb/templates/NOTES.txt @@ -0,0 +1 @@ +{{- include "common.notes.defaultNotes" . -}} diff --git a/charts/calibreweb/templates/common.yaml b/charts/calibreweb/templates/common.yaml new file mode 100644 index 0000000..64e027a --- /dev/null +++ b/charts/calibreweb/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/calibreweb/values.yaml b/charts/calibreweb/values.yaml new file mode 100644 index 0000000..7db029a --- /dev/null +++ b/charts/calibreweb/values.yaml @@ -0,0 +1,42 @@ +# +# 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: lscr.io/linuxserver/calibre-web + tag: "" + pullPolicy: Always + +env: + TZ: America/New_York + PUID: 1000 + PGID: 1000 + DOCKER_MODS: linuxserver/calibre-web:calibre + #OAUTHLIB_RELAX_TOKEN_SCOPE: 1 + +service: + main: + ports: + http: + port: 8083 + +ingress: + main: + enabled: false + +automountServiceAccountToken: false + +persistence: + config: + enabled: true + mountPath: /config + size: 100Mi + accessMode: ReadWriteOnce + data: + enabled: true + type: hostPath + hostPath: /home/jcabillot/tmp/ + mountPath: /books