fix(stash): add `/blobs` PVC storage (#10852)

This commit is contained in:
Michael Schnerring 2023-07-26 10:27:33 +00:00 committed by GitHub
parent 1fe00ced20
commit 865d3c4cde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 1 deletions

View File

@ -18,7 +18,7 @@ name: stash
sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/stash
- https://github.com/stashapp/stash
version: 11.0.0
version: 11.0.1
annotations:
truecharts.org/catagories: |
- media

View File

@ -52,6 +52,14 @@ questions:
additional_attrs: true
type: dict
attrs:
# Include{persistenceBasic}
- variable: generated
label: "App Generated Storage"
description: "Thumbnails, clips, etc"
schema:
additional_attrs: true
type: dict
attrs:
# Include{persistenceBasic}
- variable: metadata
label: "App MetaData Storage"
@ -60,6 +68,14 @@ questions:
additional_attrs: true
type: dict
attrs:
# Include{persistenceBasic}
- variable: blobs
label: "App Blobs Storage"
description: "Binary data for scene covers, performer images, etc"
schema:
additional_attrs: true
type: dict
attrs:
# Include{persistenceBasic}
- variable: data
label: "App Data Storage"

View File

@ -41,6 +41,9 @@ persistence:
metadata:
enabled: true
mountPath: "/metadata"
blobs:
enabled: true
mountPath: "/blobs"
data:
enabled: true
mountPath: "/data"