-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathvalues.yaml
More file actions
322 lines (305 loc) · 6.44 KB
/
values.yaml
File metadata and controls
322 lines (305 loc) · 6.44 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
# Default values for codimd.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
# storageClass:
# nameOverride:
# fullnameOverride:
image:
registry: "nabo.codimd.dev"
repository: "hackmdio/hackmd"
# When you use export pdf with CJK character, please change the tag with postfix `-cjk`.
# for example 2.2.0-cjk
# If not set this defaults to the appVersion in Chart.yaml
tag: ""
pullPolicy: IfNotPresent
pullSecrets: []
# - myRegistryKeySecretName
##
## PostgreSQL chart configuration
##
## Reference: https://github.com/bitnami/charts/blob/master/bitnami/postgresql/values.yaml
##
## If you want to use external database, just set postgresql.enabled to false
##
postgresql:
enabled: true
volumePermissions:
enabled: true
postgresqlUsername: codimd
postgresqlPassword: changeme
postgresqlDatabase: codimd
##
## MariaDB chart configuration
##
## Reference: https://github.com/bitnami/charts/blob/master/bitnami/mariadb/values.yaml
##
## If you prefer MariaDB, we also supported.
##
mariadb:
enabled: false
volumePermissions:
enabled: true
db:
user: codimd
password: changeme
name: codimd
master:
persistence:
enabled: true
replication:
enabled: false
##
## Kubernetes service
## use NodePort for minikube
## other environment use LoadBalancer or ClusterIP
##
service:
annotations: {}
type: "LoadBalancer"
port: 80
# externalTrafficPolicy:
# loadBalancerIP:
##
## Ingress configuration
##
ingress:
enabled: false
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
hosts:
- host: chart-example.local
paths:
- /
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
##
## CodiMD application configuration
##
codimd:
##
## Affinity for pod assignment
## Ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}
##
## Tolerations for pod assignment. Evaluated as a template.
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: {}
##
## Node labels for pod assignment. Evaluated as a template.
## ref: https://kubernetes.io/docs/user-guide/node-selection/
##
nodeSelector: {}
##
## Pod annotations
## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
##
podAnnotations: {}
##
## security context
##
securityContext:
runAsGroup: 1500
runAsUser: 1500
fsGroup: 1500
runAsNonRoot: true
##
## connection setting
##
connection:
## if you doesn't using ingress, you can setup domain for your CodiMD instances
# domain:
## if you want to add port number on your url
urlAddPort: false
## if you use load balancer or setup TLS on ingress
protocolUseSSL: false
##
## External database configuration
## if you want to use external database
## database type only support mysql and postgres
##
# database:
# type: postgres
# host:
# port:
# username:
# password:
# databaseName:
##
## Image upload store
##
imageUpload:
storeType: filesystem
# imgur:
# clientId:
# azure:
# connectionString:
# container:
# lutim:
# url:
# minio:
# endpoint:
# secure:
# port:
# accessKey:
# secretKey:
# s3:
# endpoint:
# region:
# accessKeyId:
# secretKey:
# bucket:
imageStorePersistentVolume:
enabled: true
size: '10Gi'
storageClass: "-"
accessModes:
- ReadWriteOnce
volumeMode: Filesystem
## for advanced used, manually setup environment for used
extraEnvironmentVariables: {}
# CMD_LOGLEVEL: info
## automatically check new version
versionCheck: true
##
## about security setting
##
security:
useCDN: 'false'
# session secret, please change this value
sessionSecret: 'changeit'
sessionLife: '1209600000'
## HSTS setting
hstsEnabled: 'true'
hstsMaxAge: '31536000'
hstsIncludeSubdomain: 'false'
hstsPreload: 'true'
## CSP setting
cspEnabled: 'true'
# cspReportUri:
## setup allow origin
# allowOrigin:
## use gravatar.com as user gravatar
allowGravatar: 'true'
##
## for tooBusy block user when server event loop lag more than ? ms
##
responseMaxLag: '70'
##
## setting about note creation
##
noteCreation:
freeUrlEnabled: 'false'
freeUrlForbiddenNoteIds: 'robots.txt,favicon.ico,api'
defaultPermission: 'editable'
##
## setting about note permission
##
notePermission:
allowAnonymousEdit: true
allowAnonymousView: true
##
## allow export note to pdf
##
allowPDFExport: false
##
## setting about markdown
##
markdown:
# plantUMLServer:
useHardBreak: true
linkifyHeaderStyle: 'keep-case'
##
## User Authentication Methods
##
authentication:
##
## authentication by Email and Password
local:
enabled: true
allowRegister: true
bitbucket:
enabled: false
key:
secret:
dropbox:
enabled: false
appKey:
appSecret:
facebook:
enabled: false
clientId:
secret:
github:
enabled: false
clientId:
secret:
## provide enterprise url if you use GitHub Enterprise Version
enterpriseUrl:
gitlab:
enabled: false
domain:
scope:
applicationId:
secret:
google:
enabled: false
clientId:
secret:
hostedDomain:
ldap:
enabled: false
providerName:
url:
tlsCA:
bindDN:
bindCredentials:
searchBase:
searchFilter:
searchAttributes:
attributes:
id:
username:
mattermost:
enabled: false
domain:
clientId:
secret:
oauth2:
enabled: false
providerName:
domain:
clientId:
secret:
authorizationUrl:
tokenUrl:
userProfileUrl:
scope:
attributes:
username:
displayName:
email:
openID:
enabled: false
saml:
enabled: false
idpSSOUrl:
idpCert:
issuer:
identifierFormat:
disableRequestedAuthnContext:
groupAttribute:
externalGroups:
requiredGroups:
attributes:
id:
username:
email:
twitter:
enabled:
consumerKey:
comsumerSecret: