mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 07:59:02 +00:00
[jackett/nzbhydra2/ombi/tautulli] Add subPaths for config PVCs (#138)
* Add subPath for config, bump jackett image tag * Add subPath for config, bump hydra2 image tag * fix up jackett appversion * fix up hydra2 appversion * Add subPath for config, bump ombi image tag * Add subPath for config, bump tautulli image tag
This commit is contained in:
parent
406628ef0a
commit
07a132c04a
@ -1,8 +1,8 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
appVersion: v0.12.1132-ls37
|
appVersion: v0.12.1582-ls39
|
||||||
description: API Support for your favorite torrent trackers
|
description: API Support for your favorite torrent trackers
|
||||||
name: jackett
|
name: jackett
|
||||||
version: 2.0.0
|
version: 2.0.1
|
||||||
keywords:
|
keywords:
|
||||||
- jackett
|
- jackett
|
||||||
- torrent
|
- torrent
|
||||||
|
@ -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.enabled` | Use persistent volume to store configuration data | `true` |
|
||||||
| `persistence.config.size` | Size of persistent volume claim | `1Gi` |
|
| `persistence.config.size` | Size of persistent volume claim | `1Gi` |
|
||||||
| `persistence.config.existingClaim`| Use an existing PVC to persist data | `nil` |
|
| `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.storageClass` | Type of persistent volume claim | `-` |
|
||||||
| `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` |
|
| `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` |
|
||||||
| `resources` | CPU/Memory resource requests/limits | `{}` |
|
| `resources` | CPU/Memory resource requests/limits | `{}` |
|
||||||
|
@ -61,6 +61,9 @@ spec:
|
|||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /config
|
- mountPath: /config
|
||||||
name: config
|
name: config
|
||||||
|
{{- if .Values.persistence.config.subPath }}
|
||||||
|
subPath: "{{ .Values.persistence.config.subPath }}"
|
||||||
|
{{- end }}
|
||||||
resources:
|
resources:
|
||||||
{{ toYaml .Values.resources | indent 12 }}
|
{{ toYaml .Values.resources | indent 12 }}
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
image:
|
image:
|
||||||
repository: linuxserver/jackett
|
repository: linuxserver/jackett
|
||||||
tag: v0.12.1132-ls37
|
tag: v0.12.1582-ls39
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
# upgrade strategy type (e.g. Recreate or RollingUpdate)
|
# upgrade strategy type (e.g. Recreate or RollingUpdate)
|
||||||
@ -82,6 +82,11 @@ persistence:
|
|||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: 1Gi
|
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: {}
|
resources: {}
|
||||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
# 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
|
# choice for the user. This also increases chances charts run on environments with little
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
appVersion: v2.10.2-ls46
|
appVersion: v2.11.2-ls53
|
||||||
description: Usenet meta search
|
description: Usenet meta search
|
||||||
name: nzbhydra2
|
name: nzbhydra2
|
||||||
version: 2.0.1
|
version: 2.0.2
|
||||||
keywords:
|
keywords:
|
||||||
- nzbhydra2
|
- nzbhydra2
|
||||||
- usenet
|
- usenet
|
||||||
|
@ -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.enabled` | Use persistent volume to store configuration data | `true` |
|
||||||
| `persistence.config.size` | Size of persistent volume claim | `1Gi` |
|
| `persistence.config.size` | Size of persistent volume claim | `1Gi` |
|
||||||
| `persistence.config.existingClaim`| Use an existing PVC to persist data | `nil` |
|
| `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.storageClass` | Type of persistent volume claim | `-` |
|
||||||
| `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` |
|
| `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` |
|
||||||
| `resources` | CPU/Memory resource requests/limits | `{}` |
|
| `resources` | CPU/Memory resource requests/limits | `{}` |
|
||||||
|
@ -61,6 +61,9 @@ spec:
|
|||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /config
|
- mountPath: /config
|
||||||
name: config
|
name: config
|
||||||
|
{{- if .Values.persistence.config.subPath }}
|
||||||
|
subPath: "{{ .Values.persistence.config.subPath }}"
|
||||||
|
{{- end }}
|
||||||
resources:
|
resources:
|
||||||
{{ toYaml .Values.resources | indent 12 }}
|
{{ toYaml .Values.resources | indent 12 }}
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
image:
|
image:
|
||||||
repository: linuxserver/hydra2
|
repository: linuxserver/hydra2
|
||||||
tag: v2.10.2-ls46
|
tag: v2.11.2-ls53
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
# upgrade strategy type (e.g. Recreate or RollingUpdate)
|
# upgrade strategy type (e.g. Recreate or RollingUpdate)
|
||||||
@ -82,6 +82,11 @@ persistence:
|
|||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: 1Gi
|
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: {}
|
resources: {}
|
||||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
# 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
|
# choice for the user. This also increases chances charts run on environments with little
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
apiVersion: v1
|
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!
|
description: Want a Movie or TV Show on Plex or Emby? Use Ombi!
|
||||||
name: ombi
|
name: ombi
|
||||||
version: 2.0.1
|
version: 2.0.2
|
||||||
keywords:
|
keywords:
|
||||||
- ombi
|
- ombi
|
||||||
- plex
|
- plex
|
||||||
|
@ -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.enabled` | Use persistent volume to store configuration data | `true` |
|
||||||
| `persistence.config.size` | Size of persistent volume claim | `1Gi` |
|
| `persistence.config.size` | Size of persistent volume claim | `1Gi` |
|
||||||
| `persistence.config.existingClaim`| Use an existing PVC to persist data | `nil` |
|
| `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.storageClass` | Type of persistent volume claim | `-` |
|
||||||
| `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` |
|
| `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` |
|
||||||
| `resources` | CPU/Memory resource requests/limits | `{}` |
|
| `resources` | CPU/Memory resource requests/limits | `{}` |
|
||||||
|
@ -57,6 +57,9 @@ spec:
|
|||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /config
|
- mountPath: /config
|
||||||
name: config
|
name: config
|
||||||
|
{{- if .Values.persistence.config.subPath }}
|
||||||
|
subPath: "{{ .Values.persistence.config.subPath }}"
|
||||||
|
{{- end }}
|
||||||
resources:
|
resources:
|
||||||
{{ toYaml .Values.resources | indent 12 }}
|
{{ toYaml .Values.resources | indent 12 }}
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
image:
|
image:
|
||||||
repository: linuxserver/ombi
|
repository: linuxserver/ombi
|
||||||
tag: 3.0.4914-ls72
|
tag: 3.0.4958-ls73
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
# upgrade strategy type (e.g. Recreate or RollingUpdate)
|
# upgrade strategy type (e.g. Recreate or RollingUpdate)
|
||||||
@ -80,6 +80,11 @@ persistence:
|
|||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: 1Gi
|
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: {}
|
resources: {}
|
||||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
# 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
|
# choice for the user. This also increases chances charts run on environments with little
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
appVersion: v2.1.39-ls32
|
appVersion: v2.1.42-ls34
|
||||||
description: A Python based monitoring and tracking tool for Plex Media Server.
|
description: A Python based monitoring and tracking tool for Plex Media Server.
|
||||||
name: tautulli
|
name: tautulli
|
||||||
version: 2.0.0
|
version: 2.0.1
|
||||||
keywords:
|
keywords:
|
||||||
- tautulli
|
- tautulli
|
||||||
- plex
|
- plex
|
||||||
|
@ -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.enabled` | Use persistent volume to store configuration data | `true` |
|
||||||
| `persistence.config.size` | Size of persistent volume claim | `1Gi` |
|
| `persistence.config.size` | Size of persistent volume claim | `1Gi` |
|
||||||
| `persistence.config.existingClaim`| Use an existing PVC to persist data | `nil` |
|
| `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.storageClass` | Type of persistent volume claim | `-` |
|
||||||
| `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` |
|
| `persistence.config.accessMode` | Persistence access mode | `ReadWriteOnce` |
|
||||||
| `resources` | CPU/Memory resource requests/limits | `{}` |
|
| `resources` | CPU/Memory resource requests/limits | `{}` |
|
||||||
|
@ -57,6 +57,9 @@ spec:
|
|||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /config
|
- mountPath: /config
|
||||||
name: config
|
name: config
|
||||||
|
{{- if .Values.persistence.config.subPath }}
|
||||||
|
subPath: "{{ .Values.persistence.config.subPath }}"
|
||||||
|
{{- end }}
|
||||||
resources:
|
resources:
|
||||||
{{ toYaml .Values.resources | indent 12 }}
|
{{ toYaml .Values.resources | indent 12 }}
|
||||||
volumes:
|
volumes:
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
image:
|
image:
|
||||||
repository: linuxserver/tautulli
|
repository: linuxserver/tautulli
|
||||||
tag: v2.1.39-ls32
|
tag: v2.1.42-ls34
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
# upgrade strategy type (e.g. Recreate or RollingUpdate)
|
# upgrade strategy type (e.g. Recreate or RollingUpdate)
|
||||||
@ -79,6 +79,10 @@ persistence:
|
|||||||
# existingClaim: your-claim
|
# existingClaim: your-claim
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: 1Gi
|
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: {}
|
resources: {}
|
||||||
# We usually recommend not to specify default resources and to leave this as a conscious
|
# We usually recommend not to specify default resources and to leave this as a conscious
|
||||||
|
Loading…
Reference in New Issue
Block a user