42 lines
1.2 KiB
YAML
42 lines
1.2 KiB
YAML
#
|
|
# IMPORTANT NOTE
|
|
#
|
|
# This chart inherits from our common library chart. You can check the default values/options here:
|
|
# https://teapot.octopusx.de/octocloudlab/library-chart/src/branch/main/chart/values.yaml
|
|
#
|
|
|
|
image:
|
|
# -- image repository
|
|
repository: ghcr.io/linkwarden/linkwarden
|
|
# -- image pull policy
|
|
pullPolicy: IfNotPresent
|
|
|
|
# -- environment variables. See more environment variables in the [linkwarden documentation](https://docs.linkwarden.app/self-hosting/environment-variables)
|
|
# @default -- See below
|
|
env:
|
|
# NEXTAUTH_SECRET: very_sensitive_secret
|
|
# DATABASE_URL: postgresql://user:password@localhost:5432/linkwarden
|
|
NEXTAUTH_URL: http://localhost:3000
|
|
|
|
# -- Configures service settings for the chart.
|
|
# @default -- See values.yaml
|
|
service:
|
|
main:
|
|
ports:
|
|
http:
|
|
port: 3000
|
|
|
|
ingress:
|
|
# -- Enable and configure ingress settings for the chart under this key.
|
|
# @default -- See values.yaml
|
|
main:
|
|
enabled: false
|
|
|
|
# -- Configure persistence settings for the chart under this key.
|
|
# @default -- See values.yaml
|
|
persistence: {}
|
|
# data:
|
|
# enabled: false
|
|
# accessMode: ReadWriteOnce
|
|
# size: 10Gi
|
|
# mountPath: /data/data |