Skip to content

Commit

Permalink
fix(navidrome): Breaking Change - Expose Music persistence persiste…
Browse files Browse the repository at this point in the history
…nce to GUI. (#6581)

* fix(navidrome) add music persistence and docs

* Update charts/stable/navidrome/Chart.yaml

Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>

* Delete installation_notes.md

---------

Signed-off-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
  • Loading branch information
xstar97 and stavros-k authored Jan 30, 2023
1 parent a0d7980 commit 586cee2
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 19 deletions.
2 changes: 1 addition & 1 deletion charts/stable/navidrome/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ sources:
- https://github.com/deluan/navidrome
- https://hub.docker.com/r/deluan/navidrome
type: application
version: 13.0.7
version: 14.0.0
annotations:
truecharts.org/catagories: |
- media
Expand Down
44 changes: 26 additions & 18 deletions charts/stable/navidrome/questions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ questions:
# Include{containerConfig}
# Include{serviceRoot}
- variable: main
label: "Main Service"
description: "The Primary service on which the healthcheck runs, often the webUI"
label: Main Service
description: The Primary service on which the healthcheck runs, often the webUI
schema:
additional_attrs: true
type: dict
attrs:
# Include{serviceSelectorLoadBalancer}
# Include{serviceSelectorExtras}
- variable: main
label: "Main Service Port Configuration"
label: Main Service Port Configuration
schema:
additional_attrs: true
type: dict
attrs:
- variable: port
label: "Port"
description: "This port exposes the container port on the service"
label: Port
description: This port exposes the container port on the service
schema:
type: int
default: 4533
Expand All @@ -38,8 +38,16 @@ questions:
# Include{serviceList}
# Include{persistenceRoot}
- variable: data
label: "App Config Storage"
description: "Stores the Application Configuration."
label: App Config Storage
description: Stores the Application Configuration.
schema:
additional_attrs: true
type: dict
attrs:
# Include{persistenceBasic}
- variable: music
label: App Music Storage
description: Stores the Application Music.
schema:
additional_attrs: true
type: dict
Expand All @@ -48,7 +56,7 @@ questions:
# Include{persistenceList}
# Include{ingressRoot}
- variable: main
label: "Main Ingress"
label: Main Ingress
schema:
additional_attrs: true
type: dict
Expand All @@ -60,41 +68,41 @@ questions:
# Include{security}
# Include{securityContextAdvancedRoot}
- variable: privileged
label: "Privileged mode"
label: Privileged mode
schema:
type: boolean
default: false
- variable: readOnlyRootFilesystem
label: "ReadOnly Root Filesystem"
label: ReadOnly Root Filesystem
schema:
type: boolean
default: true
- variable: allowPrivilegeEscalation
label: "Allow Privilege Escalation"
label: Allow Privilege Escalation
schema:
type: boolean
default: false
- variable: runAsNonRoot
label: "runAsNonRoot"
label: runAsNonRoot
schema:
type: boolean
default: true
# Include{podSecurityContextRoot}
- variable: runAsUser
label: "runAsUser"
description: "The UserID of the user running the application"
label: runAsUser
description: The UserID of the user running the application
schema:
type: int
default: 568
- variable: runAsGroup
label: "runAsGroup"
description: "The groupID this App of the user running the application"
label: runAsGroup
description: The groupID this App of the user running the application
schema:
type: int
default: 568
- variable: fsGroup
label: "fsGroup"
description: "The group that should own ALL storage."
label: fsGroup
description: The group that should own ALL storage.
schema:
type: int
default: 568
Expand Down
3 changes: 3 additions & 0 deletions charts/stable/navidrome/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ persistence:
data:
enabled: true
mountPath: "/data"
music:
enabled: true
mountPath: "/music"

portal:
enabled: true

0 comments on commit 586cee2

Please sign in to comment.