feat: first import

This commit is contained in:
Julien Cabillot
2022-03-03 08:30:52 -05:00
parent 42ef4ddd86
commit 68439307d0
6 changed files with 123 additions and 0 deletions

View File

@@ -0,0 +1,62 @@
#
# 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