Files
k8s-at-home-charts/charts/stable/filebrowser/values.yaml
Jonas Janz 1ac1ecbd82 [filebrowser] add new filebrowser chart (#1253)
* [filebrowser] add new filebrowser chart

Signed-off-by: PixelJonas <5434875+PixelJonas@users.noreply.github.com>

* [filebrowser] auto-generate docs

Signed-off-by: PixelJonas <5434875+PixelJonas@users.noreply.github.com>

* [filebrowser] fix default location of database

the database file should be in it's own PVC to ensure,
that people can use NFS for the files.

Signed-off-by: PixelJonas <5434875+PixelJonas@users.noreply.github.com>

* [filebrowser] add code suggestions

decrease initial version to 0.0.1
don't set defaults for accessMode or size for PersitentVolumeClaims
use template for ConfigMap

Signed-off-by: PixelJonas <5434875+PixelJonas@users.noreply.github.com>

* [filebrowse] move chart to stable

increase version to 1.0.0
re-run helm-docs
increase app-version to 2.18.0

Signed-off-by: PixelJonas <5434875+PixelJonas@users.noreply.github.com>
2021-11-14 09:47:30 -05:00

54 lines
1.1 KiB
YAML

#
# IMPORTANT NOTE
#
# This chart inherits from our common library chart. You can check the default values/options here:
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
#
image:
# -- image repository
repository: filebrowser/filebrowser
# -- image tag
tag: v2.18.0
# -- image pull policy
pullPolicy: IfNotPresent
# @default -- See below
env:
# -- Set the container timezone
TZ: UTC
# -- Configures service settings for the chart.
# @default -- See values.yaml
service:
main:
ports:
http:
port: 80
ingress:
# -- Enable and configure ingress settings for the chart under this key.
# @default -- See values.yaml
main:
enabled: false
config: |
{
"port": 80,
"baseURL": "",
"address": "",
"log": "stdout",
"database": "/config/database.db",
"root": "/srv/data"
}
# -- Configure persistence settings for the chart under this key.
# @default -- See values.yaml
persistence:
config:
enabled: false
mountpath: /config
data:
enabled: false
mountPath: /srv