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: helm/defectdojo/values.yaml
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ createPostgresqlSecret: false
10
10
# can be:
11
11
# - disabled, default
12
12
# - enabled, enables tracking configuration changes based on SHA256
13
-
#trackConfig: disabled
13
+
trackConfig: disabled
14
14
15
15
# Avoid using pre-install hooks, which might cause issues with ArgoCD
16
16
disableHooks: false
@@ -328,7 +328,7 @@ django:
328
328
appSettings:
329
329
processes: 4
330
330
threads: 4
331
-
#maxFd: 102400 # Uncomment to set the maximum number of file descriptors. If not set will be detected by uwsgi
331
+
maxFd: 0#102400 # Use this value to set the maximum number of file descriptors. If set to 0 will be detected by uwsgi
332
332
enableDebug: false # this also requires DD_DEBUG to be set to True
333
333
certificates:
334
334
# includes additional CA certificate as volume, it refrences REQUESTS_CA_BUNDLE env varible
@@ -490,20 +490,19 @@ redis:
490
490
491
491
# To add extra variables not predefined by helm config it is possible to define in extraConfigs block, e.g. below:
492
492
# NOTE Do not store any kind of sensitive information inside of it
493
-
#extraConfigs:
493
+
extraConfigs:{}
494
494
# DD_SOCIAL_AUTH_AUTH0_OAUTH2_ENABLED: 'true'
495
495
# DD_SOCIAL_AUTH_AUTH0_KEY: 'dev'
496
496
# DD_SOCIAL_AUTH_AUTH0_DOMAIN: 'xxxxx'
497
497
498
498
# Extra secrets can be created inside of extraSecrets block:
499
499
# NOTE This is just an exmaple, do not store sensitive data in plain text form, better inject it during the deployment/upgrade by --set extraSecrets.secret=someSecret
500
-
#extraSecrets:
500
+
extraSecrets:{}
501
501
# DD_SOCIAL_AUTH_AUTH0_SECRET: 'xxx'
502
-
extraConfigs: {}
503
502
504
503
# To add (or override) extra variables which need to be pulled from another configMap, you can
505
504
# use extraEnv. For example:
506
-
#extraEnv:
505
+
extraEnv:[]
507
506
# - name: DD_DATABASE_HOST
508
507
# valueFrom:
509
508
# configMapKeyRef:
@@ -513,6 +512,7 @@ extraConfigs: {}
513
512
# To add code snippet which would extend setting functionality, you might add it here
514
513
# It will be stored as ConfigMap and mounted `dojo/settings/local_settings.py`.
515
514
# For more see: https://documentation.defectdojo.com/getting_started/configuration/
0 commit comments