-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
82 lines (73 loc) · 1.62 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
#
# IMPORTANT NOTE
#
# This chart inherits from the common library chart. You can check the default values/options here:
# https://github.com/johanneskastl/helm-charts/tree/main/charts/common/values.yaml
#
image:
repository: ghcr.io/linuxserver/hedgedoc
pullPolicy: IfNotPresent
tag: ""
secret: {}
# DB_PASS: "hedgedoc-pass"
# See more environment variables in the hedgedoc documentation
# https://github.com/linuxserver/docker-hedgedoc#parameters
env:
# set this to example.org
CMD_DOMAIN:
# set this to "['localhost', 'example.org']"
CMD_ALLOW_ORIGIN:
# CMD_PROTOCOL_USESSL: false
# CMD_URL_ADDPORT: false
# TZ:
# PUID: "1000"
# PGID: "1000"
# DB_USER: "hedgedoc"
# DB_HOST: "mariadb"
# DB_NAME: "hedgedoc"
# DB_PORT: "3306"
service:
main:
enabled: true
ports:
http:
enabled: true
port: 3000
ingress:
main:
enabled: false
persistence:
config:
enabled: false
emptyDir: false
mountPath: /config
controller:
strategy: RollingUpdate
probes:
liveness:
spec:
initialDelaySeconds: 30
timeoutSeconds: 10
failureThreshold: 5
readiness:
spec:
initialDelaySeconds: 30
timeoutSeconds: 10
failureThreshold: 5
startup:
spec:
initialDelaySeconds: 30
timeoutSeconds: 10
failureThreshold: 5
# Enable mariadb
# https://github.com/nicholaswilde/helm-charts/blob/main/charts/mariadb/values.yaml
mariadb:
enabled: false
secret:
MYSQL_ROOT_PASSWORD: hedgedoc-pass
MYSQL_PASSWORD: hedgedoc-pass
env:
MYSQL_USER: hedgedoc
MYSQL_DATABASE: hedgedoc
fullnameOverride: template-mariadb