mirror of
https://github.com/truenas/charts.git
synced 2026-06-15 06:28:46 +08:00
Publish new changes in catalog
This commit is contained in:
@@ -4,9 +4,9 @@ description: File Browser provides a file managing interface within a specified
|
||||
annotations:
|
||||
title: File Browser
|
||||
type: application
|
||||
version: 1.2.8
|
||||
version: 1.2.9
|
||||
apiVersion: v2
|
||||
appVersion: 2.29.0
|
||||
appVersion: 2.30.0
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
maintainers:
|
||||
- name: truenas
|
||||
@@ -1,7 +1,7 @@
|
||||
image:
|
||||
repository: filebrowser/filebrowser
|
||||
pullPolicy: IfNotPresent
|
||||
tag: v2.29.0
|
||||
tag: v2.30.0
|
||||
|
||||
resources:
|
||||
limits:
|
||||
@@ -3,9 +3,9 @@ description: Firefly III is a personal finances manager
|
||||
annotations:
|
||||
title: Firefly III
|
||||
type: application
|
||||
version: 1.1.24
|
||||
version: 1.1.25
|
||||
apiVersion: v2
|
||||
appVersion: 6.1.15
|
||||
appVersion: 6.1.16
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
maintainers:
|
||||
- name: truenas
|
||||
@@ -1,7 +1,7 @@
|
||||
image:
|
||||
repository: fireflyiii/core
|
||||
pullPolicy: IfNotPresent
|
||||
tag: version-6.1.15
|
||||
tag: version-6.1.16
|
||||
|
||||
importerImage:
|
||||
repository: fireflyiii/data-importer
|
||||
@@ -3,7 +3,7 @@ description: Navidrome is a personal streaming service
|
||||
annotations:
|
||||
title: Navidrome
|
||||
type: application
|
||||
version: 1.2.9
|
||||
version: 1.2.10
|
||||
apiVersion: v2
|
||||
appVersion: 0.52.5
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
@@ -9,7 +9,8 @@ resources:
|
||||
memory: 8Gi
|
||||
|
||||
navidromeConfig:
|
||||
uiWelcomeMessage: ''
|
||||
uiWelcomeMessage: ""
|
||||
localPlayback: false
|
||||
additionalEnvs: []
|
||||
|
||||
navidromeNetwork:
|
||||
@@ -33,6 +33,17 @@ questions:
|
||||
schema:
|
||||
type: string
|
||||
default: ""
|
||||
- variable: localPlayback
|
||||
label: Enable Local Playback
|
||||
description: |
|
||||
Enable local playback for Navidrome.</br>
|
||||
This will allow you to play music from your local machine, by mounting</br>
|
||||
the sound card to the container.</br>
|
||||
Keep in mind that this will make the container to run with elevated privileges</br>
|
||||
and privilege escalation. Use with caution.
|
||||
schema:
|
||||
type: boolean
|
||||
default: false
|
||||
- variable: additionalEnvs
|
||||
label: Additional Environment Variables
|
||||
description: Configure additional environment variables for Navidrome.
|
||||
@@ -6,6 +6,11 @@ workload:
|
||||
type: Deployment
|
||||
podSpec:
|
||||
hostNetwork: {{ .Values.navidromeNetwork.hostNetwork }}
|
||||
securityContext:
|
||||
{{- if .Values.navidromeConfig.localPlayback }}
|
||||
supplementalGroups:
|
||||
- 29
|
||||
{{- end }}
|
||||
containers:
|
||||
navidrome:
|
||||
enabled: true
|
||||
@@ -15,6 +20,10 @@ workload:
|
||||
runAsUser: {{ .Values.navidromeRunAs.user }}
|
||||
runAsGroup: {{ .Values.navidromeRunAs.group }}
|
||||
readOnlyRootFilesystem: false
|
||||
{{- if .Values.navidromeConfig.localPlayback }}
|
||||
privileged: true
|
||||
allowPrivilegeEscalation: true
|
||||
{{- end }}
|
||||
env:
|
||||
ND_MUSICFOLDER: /music
|
||||
ND_DATAFOLDER: /data
|
||||
@@ -24,6 +24,16 @@ persistence:
|
||||
01-permissions:
|
||||
mountPath: /mnt/directories/music
|
||||
{{- end }}
|
||||
{{- if .Values.navidromeConfig.localPlayback }}
|
||||
snd-device:
|
||||
enabled: true
|
||||
type: hostPath
|
||||
hostPath: /dev/snd
|
||||
targetSelector:
|
||||
navidrome:
|
||||
navidrome:
|
||||
mountPath: /dev/snd
|
||||
{{- end }}
|
||||
{{- range $idx, $storage := .Values.navidromeStorage.additionalStorages }}
|
||||
{{ printf "navidrome-%v:" (int $idx) }}
|
||||
enabled: true
|
||||
@@ -3,7 +3,7 @@ description: Expose your services easily and securely
|
||||
annotations:
|
||||
title: Nginx Proxy Manager
|
||||
type: application
|
||||
version: 1.0.30
|
||||
version: 1.0.31
|
||||
apiVersion: v2
|
||||
appVersion: 2.11.2
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
@@ -70,7 +70,7 @@ questions:
|
||||
description: The user id that Nginx Proxy Manager files will be owned by.
|
||||
schema:
|
||||
type: int
|
||||
min: 2
|
||||
min: 0
|
||||
default: 568
|
||||
required: true
|
||||
- variable: group
|
||||
@@ -78,7 +78,7 @@ questions:
|
||||
description: The group id that Nginx Proxy Manager files will be owned by.
|
||||
schema:
|
||||
type: int
|
||||
min: 2
|
||||
min: 0
|
||||
default: 568
|
||||
required: true
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
name: redis
|
||||
description: Redis. The open source, in-memory data store used by millions of developers as a database, cache, streaming engine, and message broker.
|
||||
description: Redis. The open source, in-memory data store used by millions of developers
|
||||
as a database, cache, streaming engine, and message broker.
|
||||
annotations:
|
||||
title: Redis
|
||||
type: application
|
||||
version: 1.0.22
|
||||
version: 1.0.23
|
||||
apiVersion: v2
|
||||
appVersion: 7.2.4
|
||||
appVersion: 7.2.5
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
maintainers:
|
||||
- name: truenas
|
||||
@@ -1,7 +1,7 @@
|
||||
image:
|
||||
repository: bitnami/redis
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 7.2.4
|
||||
tag: 7.2.5
|
||||
|
||||
resources:
|
||||
limits:
|
||||
@@ -4,9 +4,9 @@ description: Roundcube is a browser-based multilingual IMAP client with an appli
|
||||
annotations:
|
||||
title: Roundcube
|
||||
type: application
|
||||
version: 1.0.3
|
||||
version: 1.0.4
|
||||
apiVersion: v2
|
||||
appVersion: 1.6.6
|
||||
appVersion: 1.6.7
|
||||
kubeVersion: '>=1.16.0-0'
|
||||
maintainers:
|
||||
- name: truenas
|
||||
@@ -1,7 +1,7 @@
|
||||
image:
|
||||
repository: roundcube/roundcubemail
|
||||
pullPolicy: IfNotPresent
|
||||
tag: 1.6.6-apache
|
||||
tag: 1.6.7-apache
|
||||
|
||||
resources:
|
||||
limits:
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user