mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-24 16:09:08 +00:00
Merge pull request #25 from blmhemu/master
[Bazarr] Added subpath for config
This commit is contained in:
commit
8c958cbadb
@ -2,7 +2,7 @@ apiVersion: v2
|
|||||||
appVersion: v0.9.0.2
|
appVersion: v0.9.0.2
|
||||||
description: Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements
|
description: Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements
|
||||||
name: bazarr
|
name: bazarr
|
||||||
version: 3.0.1
|
version: 3.1.0
|
||||||
keywords:
|
keywords:
|
||||||
- bazarr
|
- bazarr
|
||||||
- radarr
|
- radarr
|
||||||
|
@ -75,6 +75,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` | Select a subpath in the PVC | `nil` |
|
||||||
| `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` |
|
||||||
| `persistence.config.skipuninstall` | Do not delete the pvc upon helm uninstall | `false` |
|
| `persistence.config.skipuninstall` | Do not delete the pvc upon helm uninstall | `false` |
|
||||||
|
@ -64,6 +64,9 @@ spec:
|
|||||||
volumeMounts:
|
volumeMounts:
|
||||||
- mountPath: /config
|
- mountPath: /config
|
||||||
name: config
|
name: config
|
||||||
|
{{- if .Values.persistence.config.subPath }}
|
||||||
|
subPath: {{ .Values.persistence.config.subPath }}
|
||||||
|
{{- end }}
|
||||||
- mountPath: /media
|
- mountPath: /media
|
||||||
name: media
|
name: media
|
||||||
{{- if .Values.persistence.media.subPath }}
|
{{- if .Values.persistence.media.subPath }}
|
||||||
|
@ -78,6 +78,7 @@ persistence:
|
|||||||
## If you want to reuse an existing claim, you can pass the name of the PVC using
|
## If you want to reuse an existing claim, you can pass the name of the PVC using
|
||||||
## the existingClaim variable
|
## the existingClaim variable
|
||||||
# existingClaim: your-claim
|
# existingClaim: your-claim
|
||||||
|
# subPath: some-subpath
|
||||||
accessMode: ReadWriteOnce
|
accessMode: ReadWriteOnce
|
||||||
size: 1Gi
|
size: 1Gi
|
||||||
## Do not delete the pvc upon helm uninstall
|
## Do not delete the pvc upon helm uninstall
|
||||||
|
Loading…
Reference in New Issue
Block a user