63 lines
1.1 KiB
YAML
Raw Normal View History

2022-03-03 08:30:52 -05:00
#
# IMPORTANT NOTE
#
# This chart inherits from our common library chart. You can check the default values/options here:
# https://scm.docker.cabillot.eu/perso/helm-library-common
#
image:
repository: docker.io/filebrowser/filebrowser
tag: ""
pullPolicy: Always
env:
TZ: America/New_York
service:
main:
ports:
http:
port: 8080
ingress:
main:
enabled: false
automountServiceAccountToken: false
configmap:
config:
enabled: true
data:
config.json: |
{
"port": 8080,
"address": "",
"database": "/database/database.db",
"root": "/srv",
"allowCommands": true,
"allowEdit": true,
"allowNew": true,
"commands": []
}
persistence:
config:
enabled: true
type: configMap
# TODO: hardcodé, à changer
name: drive-filebrowser-config
mountPath: /.filebrowser.json
subPath: config.json
db:
enabled: true
mountPath: /database
size: 100Mi
accessMode: ReadWriteOnce
data:
enabled: true
type: hostPath
# TODO: hardcodé, à changer
hostPath: /mnt/cifs-dperso
mountPath: /srv