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

This commit is contained in:
Michael Schnerring
2023-07-26 12:27:33 +02:00
committed by GitHub
parent 1fe00ced20
commit 865d3c4cde
3 changed files with 20 additions and 1 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ name: stash
sources: sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/stash - https://github.com/truecharts/charts/tree/master/charts/stable/stash
- https://github.com/stashapp/stash - https://github.com/stashapp/stash
version: 11.0.0 version: 11.0.1
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- media - media
+16
View File
@@ -52,6 +52,14 @@ questions:
additional_attrs: true additional_attrs: true
type: dict type: dict
attrs: attrs:
# Include{persistenceBasic}
- variable: generated
label: "App Generated Storage"
description: "Thumbnails, clips, etc"
schema:
additional_attrs: true
type: dict
attrs:
# Include{persistenceBasic} # Include{persistenceBasic}
- variable: metadata - variable: metadata
label: "App MetaData Storage" label: "App MetaData Storage"
@@ -60,6 +68,14 @@ questions:
additional_attrs: true additional_attrs: true
type: dict type: dict
attrs: 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} # Include{persistenceBasic}
- variable: data - variable: data
label: "App Data Storage" label: "App Data Storage"
+3
View File
@@ -41,6 +41,9 @@ persistence:
metadata: metadata:
enabled: true enabled: true
mountPath: "/metadata" mountPath: "/metadata"
blobs:
enabled: true
mountPath: "/blobs"
data: data:
enabled: true enabled: true
mountPath: "/data" mountPath: "/data"