diff --git a/calibre-web/Chart.yaml b/calibre-web/Chart.yaml index 22bc022..a053de0 100644 --- a/calibre-web/Chart.yaml +++ b/calibre-web/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: 0.6.6-ls58 description: A simple web viewer for Calibre libraries name: calibre-web -version: 1.0.1 +version: 1.1.0 keywords: - calibre-web - calibre diff --git a/calibre-web/README.md b/calibre-web/README.md index d82bb1a..f51660d 100644 --- a/calibre-web/README.md +++ b/calibre-web/README.md @@ -39,6 +39,7 @@ The following tables lists the configurable parameters of the Sentry chart and t | `timezone` | Timezone the calibre-web instance should run as, e.g. 'America/New_York' | `UTC` | | `puid` | process userID the calibre-web instance should run as | `1001` | | `pgid` | process groupID the calibre-web instance should run as | `1001` | + `dockerMods` | Enable "Docker Mods" for the Calibre-Web container | `nil` | | `probes.liveness.initialDelaySeconds` | Specify liveness `initialDelaySeconds` parameter for the deployment | `60` | | `probes.liveness.failureThreshold` | Specify liveness `failureThreshold` parameter for the deployment | `5` | | `probes.liveness.timeoutSeconds` | Specify liveness `timeoutSeconds` parameter for the deployment | `10` | diff --git a/calibre-web/templates/deployment.yaml b/calibre-web/templates/deployment.yaml index 922636e..bbc94b6 100644 --- a/calibre-web/templates/deployment.yaml +++ b/calibre-web/templates/deployment.yaml @@ -61,8 +61,10 @@ spec: value: "{{ .Values.puid }}" - name: PGID value: "{{ .Values.pgid }}" + {{- if .values.dockerMods }} - name: DOCKER_MODS - value: "linuxserver/calibre-web:calibre" + value: {{ .Values.dockerMods }} + {{- end }} volumeMounts: - mountPath: /config name: config