fix(audiobookshelf): add temp dir for .npm (#3045)

* fix(audiobookshelf): add temp dir for .npm

* root
This commit is contained in:
Stavros Kois
2022-07-02 15:40:16 +00:00
committed by GitHub
parent 356c10bb0b
commit e0c7b7b860
3 changed files with 21 additions and 5 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ name: audiobookshelf
sources: sources:
- https://hub.docker.com/r/advplyr/audiobookshelf - https://hub.docker.com/r/advplyr/audiobookshelf
- https://github.com/advplyr/audiobookshelf - https://github.com/advplyr/audiobookshelf
version: 2.0.8 version: 2.0.9
annotations: annotations:
truecharts.org/catagories: | truecharts.org/catagories: |
- media - media
+4 -4
View File
@@ -245,7 +245,7 @@ questions:
label: "ReadOnly Root Filesystem" label: "ReadOnly Root Filesystem"
schema: schema:
type: boolean type: boolean
default: true default: false
- variable: allowPrivilegeEscalation - variable: allowPrivilegeEscalation
label: "Allow Privilege Escalation" label: "Allow Privilege Escalation"
schema: schema:
@@ -255,7 +255,7 @@ questions:
label: "runAsNonRoot" label: "runAsNonRoot"
schema: schema:
type: boolean type: boolean
default: true default: false
# Include{securityContextAdvanced} # Include{securityContextAdvanced}
- variable: podSecurityContext - variable: podSecurityContext
@@ -270,13 +270,13 @@ questions:
description: "The UserID of the user running the application" description: "The UserID of the user running the application"
schema: schema:
type: int type: int
default: 568 default: 0
- variable: runAsGroup - variable: runAsGroup
label: "runAsGroup" label: "runAsGroup"
description: "The groupID this App of the user running the application" description: "The groupID this App of the user running the application"
schema: schema:
type: int type: int
default: 568 default: 0
- variable: fsGroup - variable: fsGroup
label: "fsGroup" label: "fsGroup"
description: "The group that should own ALL storage." description: "The group that should own ALL storage."
+16
View File
@@ -12,12 +12,28 @@ env:
name: audiobookshelf-secrets name: audiobookshelf-secrets
key: TOKEN_SECRET key: TOKEN_SECRET
podSecurityContext:
runAsUser: 0
runAsGroup: 0
securityContext:
readOnlyRootFilesystem: false
runAsNonRoot: false
service: service:
main: main:
ports: ports:
main: main:
port: 10223 port: 10223
probes:
liveness:
path: "/ping"
readiness:
path: "/ping"
startup:
path: "/ping"
persistence: persistence:
config: config:
enabled: true enabled: true