diff --git a/charts/jackett/Chart.yaml b/charts/jackett/Chart.yaml index ffddbb47..c9a6a4a6 100644 --- a/charts/jackett/Chart.yaml +++ b/charts/jackett/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 -appVersion: v0.12.1132-ls37 +appVersion: v0.12.1582-ls39 description: API Support for your favorite torrent trackers name: jackett -version: 2.0.0 +version: 2.0.1 keywords: - jackett - torrent diff --git a/charts/jackett/README.md b/charts/jackett/README.md index 68474f49..bd8875a1 100644 --- a/charts/jackett/README.md +++ b/charts/jackett/README.md @@ -62,6 +62,7 @@ The following tables lists the configurable parameters of the Sentry chart and t | `persistence.config.enabled` | Use persistent volume to store configuration data | `true` | | `persistence.config.size` | Size of persistent volume claim | `1Gi` | | `persistence.config.existingClaim`| Use an existing PVC to persist data | `nil` | +| `persistence.config.subPath` | Mount a sub directory of the persistent volume if set | `""` | | `persistence.config.storageClass` | Type of persistent volume claim | `-` | | `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` | | `resources` | CPU/Memory resource requests/limits | `{}` | diff --git a/charts/jackett/templates/deployment.yaml b/charts/jackett/templates/deployment.yaml index d964306e..9b01b47c 100644 --- a/charts/jackett/templates/deployment.yaml +++ b/charts/jackett/templates/deployment.yaml @@ -61,6 +61,9 @@ spec: volumeMounts: - mountPath: /config name: config + {{- if .Values.persistence.config.subPath }} + subPath: "{{ .Values.persistence.config.subPath }}" + {{- end }} resources: {{ toYaml .Values.resources | indent 12 }} volumes: diff --git a/charts/jackett/values.yaml b/charts/jackett/values.yaml index 0367e141..deb1872c 100644 --- a/charts/jackett/values.yaml +++ b/charts/jackett/values.yaml @@ -4,7 +4,7 @@ image: repository: linuxserver/jackett - tag: v0.12.1132-ls37 + tag: v0.12.1582-ls39 pullPolicy: IfNotPresent # upgrade strategy type (e.g. Recreate or RollingUpdate) @@ -82,6 +82,11 @@ persistence: accessMode: ReadWriteOnce size: 1Gi + ## If subPath is set mount a sub folder of a volume instead of the root of the volume. + ## This is especially handy for volume plugins that don't natively support sub mounting (like glusterfs). + ## + subPath: "" + resources: {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little diff --git a/charts/nzbhydra2/Chart.yaml b/charts/nzbhydra2/Chart.yaml index 71eac17b..37facbfe 100644 --- a/charts/nzbhydra2/Chart.yaml +++ b/charts/nzbhydra2/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 -appVersion: v2.10.2-ls46 +appVersion: v2.11.2-ls53 description: Usenet meta search name: nzbhydra2 -version: 2.0.1 +version: 2.0.2 keywords: - nzbhydra2 - usenet diff --git a/charts/nzbhydra2/README.md b/charts/nzbhydra2/README.md index ed84f4f7..14554d9a 100644 --- a/charts/nzbhydra2/README.md +++ b/charts/nzbhydra2/README.md @@ -62,6 +62,7 @@ The following tables lists the configurable parameters of the Sentry chart and t | `persistence.config.enabled` | Use persistent volume to store configuration data | `true` | | `persistence.config.size` | Size of persistent volume claim | `1Gi` | | `persistence.config.existingClaim`| Use an existing PVC to persist data | `nil` | +| `persistence.config.subPath` | Mount a sub directory of the persistent volume if set | `""` | | `persistence.config.storageClass` | Type of persistent volume claim | `-` | | `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` | | `resources` | CPU/Memory resource requests/limits | `{}` | diff --git a/charts/nzbhydra2/templates/deployment.yaml b/charts/nzbhydra2/templates/deployment.yaml index 3dfe6859..cf12b364 100644 --- a/charts/nzbhydra2/templates/deployment.yaml +++ b/charts/nzbhydra2/templates/deployment.yaml @@ -61,6 +61,9 @@ spec: volumeMounts: - mountPath: /config name: config + {{- if .Values.persistence.config.subPath }} + subPath: "{{ .Values.persistence.config.subPath }}" + {{- end }} resources: {{ toYaml .Values.resources | indent 12 }} volumes: diff --git a/charts/nzbhydra2/values.yaml b/charts/nzbhydra2/values.yaml index ce63afd5..eb41c9fa 100644 --- a/charts/nzbhydra2/values.yaml +++ b/charts/nzbhydra2/values.yaml @@ -4,7 +4,7 @@ image: repository: linuxserver/hydra2 - tag: v2.10.2-ls46 + tag: v2.11.2-ls53 pullPolicy: IfNotPresent # upgrade strategy type (e.g. Recreate or RollingUpdate) @@ -82,6 +82,11 @@ persistence: accessMode: ReadWriteOnce size: 1Gi + ## If subPath is set mount a sub folder of a volume instead of the root of the volume. + ## This is especially handy for volume plugins that don't natively support sub mounting (like glusterfs). + ## + subPath: "" + resources: {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little diff --git a/charts/ombi/Chart.yaml b/charts/ombi/Chart.yaml index 2bd44755..6c26df32 100644 --- a/charts/ombi/Chart.yaml +++ b/charts/ombi/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 -appVersion: 3.0.4914-ls72 +appVersion: 3.0.4958-ls73 description: Want a Movie or TV Show on Plex or Emby? Use Ombi! name: ombi -version: 2.0.1 +version: 2.0.2 keywords: - ombi - plex diff --git a/charts/ombi/README.md b/charts/ombi/README.md index 049d1ea6..2c995b62 100644 --- a/charts/ombi/README.md +++ b/charts/ombi/README.md @@ -61,6 +61,7 @@ The following tables lists the configurable parameters of the Sentry chart and t | `persistence.config.enabled` | Use persistent volume to store configuration data | `true` | | `persistence.config.size` | Size of persistent volume claim | `1Gi` | | `persistence.config.existingClaim`| Use an existing PVC to persist data | `nil` | +| `persistence.config.subPath` | Mount a sub directory of the persistent volume if set | `""` | | `persistence.config.storageClass` | Type of persistent volume claim | `-` | | `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` | | `resources` | CPU/Memory resource requests/limits | `{}` | diff --git a/charts/ombi/templates/deployment.yaml b/charts/ombi/templates/deployment.yaml index 2206b886..d12ba455 100644 --- a/charts/ombi/templates/deployment.yaml +++ b/charts/ombi/templates/deployment.yaml @@ -57,6 +57,9 @@ spec: volumeMounts: - mountPath: /config name: config + {{- if .Values.persistence.config.subPath }} + subPath: "{{ .Values.persistence.config.subPath }}" + {{- end }} resources: {{ toYaml .Values.resources | indent 12 }} volumes: diff --git a/charts/ombi/values.yaml b/charts/ombi/values.yaml index 4669a037..30316b80 100644 --- a/charts/ombi/values.yaml +++ b/charts/ombi/values.yaml @@ -4,7 +4,7 @@ image: repository: linuxserver/ombi - tag: 3.0.4914-ls72 + tag: 3.0.4958-ls73 pullPolicy: IfNotPresent # upgrade strategy type (e.g. Recreate or RollingUpdate) @@ -80,6 +80,11 @@ persistence: accessMode: ReadWriteOnce size: 1Gi + ## If subPath is set mount a sub folder of a volume instead of the root of the volume. + ## This is especially handy for volume plugins that don't natively support sub mounting (like glusterfs). + ## + subPath: "" + resources: {} # We usually recommend not to specify default resources and to leave this as a conscious # choice for the user. This also increases chances charts run on environments with little diff --git a/charts/tautulli/Chart.yaml b/charts/tautulli/Chart.yaml index d08662a2..a6c9e073 100644 --- a/charts/tautulli/Chart.yaml +++ b/charts/tautulli/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 -appVersion: v2.1.39-ls32 +appVersion: v2.1.42-ls34 description: A Python based monitoring and tracking tool for Plex Media Server. name: tautulli -version: 2.0.0 +version: 2.0.1 keywords: - tautulli - plex diff --git a/charts/tautulli/README.md b/charts/tautulli/README.md index f645385a..de926c61 100644 --- a/charts/tautulli/README.md +++ b/charts/tautulli/README.md @@ -61,6 +61,7 @@ The following tables lists the configurable parameters of the Sentry chart and t | `persistence.config.enabled` | Use persistent volume to store configuration data | `true` | | `persistence.config.size` | Size of persistent volume claim | `1Gi` | | `persistence.config.existingClaim`| Use an existing PVC to persist data | `nil` | +| `persistence.config.subPath` | Mount a sub directory of the persistent volume if set | `""` | | `persistence.config.storageClass` | Type of persistent volume claim | `-` | | `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` | | `resources` | CPU/Memory resource requests/limits | `{}` | diff --git a/charts/tautulli/templates/deployment.yaml b/charts/tautulli/templates/deployment.yaml index 7c3bb354..3da05804 100644 --- a/charts/tautulli/templates/deployment.yaml +++ b/charts/tautulli/templates/deployment.yaml @@ -57,6 +57,9 @@ spec: volumeMounts: - mountPath: /config name: config + {{- if .Values.persistence.config.subPath }} + subPath: "{{ .Values.persistence.config.subPath }}" + {{- end }} resources: {{ toYaml .Values.resources | indent 12 }} volumes: diff --git a/charts/tautulli/values.yaml b/charts/tautulli/values.yaml index d16a3c1d..bc2b2fb4 100644 --- a/charts/tautulli/values.yaml +++ b/charts/tautulli/values.yaml @@ -4,7 +4,7 @@ image: repository: linuxserver/tautulli - tag: v2.1.39-ls32 + tag: v2.1.42-ls34 pullPolicy: IfNotPresent # upgrade strategy type (e.g. Recreate or RollingUpdate) @@ -79,6 +79,10 @@ persistence: # existingClaim: your-claim accessMode: ReadWriteOnce size: 1Gi + ## If subPath is set mount a sub folder of a volume instead of the root of the volume. + ## This is especially handy for volume plugins that don't natively support sub mounting (like glusterfs). + ## + subPath: "" resources: {} # We usually recommend not to specify default resources and to leave this as a conscious