You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: charts/lldap/values.schema.json
+64-1Lines changed: 64 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -188,6 +188,20 @@
188
188
"required": [],
189
189
"title": "enabled",
190
190
"type": "boolean"
191
+
},
192
+
"fromSecret": {
193
+
"default": null,
194
+
"description": "Name of the secret containing the database URI",
195
+
"required": [],
196
+
"title": "fromSecret",
197
+
"type": "string"
198
+
},
199
+
"uriKey": {
200
+
"default": null,
201
+
"description": "Name of the secret key containing the database URI",
202
+
"required": [],
203
+
"title": "uriKey",
204
+
"type": "string"
191
205
}
192
206
},
193
207
"required": [],
@@ -239,6 +253,20 @@
239
253
"required": [],
240
254
"title": "enabled",
241
255
"type": "boolean"
256
+
},
257
+
"fromSecret": {
258
+
"default": null,
259
+
"description": "Name of the secret containing the database URI",
260
+
"required": [],
261
+
"title": "fromSecret",
262
+
"type": "string"
263
+
},
264
+
"uriKey": {
265
+
"default": null,
266
+
"description": "Name of the secret key containing the database URI",
267
+
"required": [],
268
+
"title": "uriKey",
269
+
"type": "string"
242
270
}
243
271
},
244
272
"required": [],
@@ -435,20 +463,41 @@
435
463
"title": "gid",
436
464
"type": "integer"
437
465
},
466
+
"secretName": {
467
+
"default": null,
468
+
"description": "Name of Kubernetes secret containing credentials",
469
+
"required": [],
470
+
"title": "secretName",
471
+
"type": "string"
472
+
},
438
473
"jwtSecret": {
439
474
"default": "REPLACE_WITH_RANDOM",
440
475
"description": "Random secret for JWT signature.\nThis secret should be random, and should be shared with application servers that need to\nconsume the JWTs. Changing this secret will invalidate all user sessions and require them\nto re-login. You can generate it with (on linux):\nLC_ALL=C tr -dc 'A-Za-z0-9!#%\u0026'\\''()*+,-./:;\u003c=\u003e?@[\\]^_{|}~' \u003c/dev/urandom | head -c 32; echo ''",
441
476
"required": [],
442
477
"title": "jwtSecret",
443
478
"type": "string"
444
479
},
480
+
"jwtSecretKey": {
481
+
"default": "jwtSecret",
482
+
"description": "Name of the JWT signature key in the credentials secret",
483
+
"required": [],
484
+
"title": "jwtSecretKey",
485
+
"type": "string"
486
+
},
445
487
"keySeed": {
446
488
"default": "REPLACE_WITH_RANDOM",
447
489
"description": "Seed to generate the server private key. This can be any random string, the recommendation\nis that it's at least 12 characters long.",
448
490
"required": [],
449
491
"title": "keySeed",
450
492
"type": "string"
451
493
},
494
+
"keySeedKey": {
495
+
"default": "keySeed",
496
+
"description": "Name of the key containing the private key seed in the credentials secret",
497
+
"required": [],
498
+
"title": "keySeedKey",
499
+
"type": "string"
500
+
},
452
501
"ldapUserDN": {
453
502
"default": "admin",
454
503
"description": "Admin username.\nFor the LDAP interface, a value of \"admin\" here will create the LDAP user\n\"cn=admin,ou=people,dc=example,dc=com\" (with the base DN above). For the administration\ninterface, this is the username.",
@@ -463,6 +512,13 @@
463
512
"title": "ldapUserPass",
464
513
"type": "string"
465
514
},
515
+
"ldapUserPassKey": {
516
+
"default": "ldapUserPass",
517
+
"description": "Name of the LDAP admin password key in the credentials secret",
518
+
"required": [],
519
+
"title": "ldapUserPassKey",
520
+
"type": "string"
521
+
},
466
522
"ldaps": {
467
523
"description": "Options to configure LDAPS",
468
524
"properties": {
@@ -516,6 +572,13 @@
516
572
"title": "password",
517
573
"type": "string"
518
574
},
575
+
"passwordKey": {
576
+
"default": "password",
577
+
"description": "Name of the SMTP password in the credentials secret",
0 commit comments