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
| celery.worker.terminationGracePeriodSeconds | int | `300` | |
577
576
| celery.worker.tolerations | list | `[]` | |
578
577
| cloudsql | object | `{"containerSecurityContext":{},"enable_iam_login":false,"enabled":false,"extraEnv":[],"extraVolumeMounts":[],"image":{"pullPolicy":"IfNotPresent","repository":"gcr.io/cloudsql-docker/gce-proxy","tag":"1.37.9"},"instance":"","resources":{},"use_private_ip":false,"verbose":true}` | Google CloudSQL support in GKE via gce-proxy |
579
578
| cloudsql.containerSecurityContext | object | `{}` | Optional: security context for the CloudSQL proxy container. |
@@ -633,6 +632,7 @@ A Helm chart for Kubernetes to install DefectDojo
633
632
| django.service.annotations | object | `{}` | |
634
633
| django.service.type | string | `""` | |
635
634
| django.strategy | object | `{}` | |
635
+
| django.terminationGracePeriodSeconds | int | `60` | |
636
636
| django.tolerations | list | `[]` | |
637
637
| django.uwsgi.appSettings.maxFd | int | `0` | Use this value to set the maximum number of file descriptors. If set to 0 will be detected by uwsgi e.g. 102400 |
638
638
| django.uwsgi.appSettings.processes | int | `4` | |
Copy file name to clipboardExpand all lines: helm/defectdojo/values.schema.json
+9-40Lines changed: 9 additions & 40 deletions
Original file line number
Diff line number
Diff line change
@@ -55,30 +55,6 @@
55
55
"automountServiceAccountToken": {
56
56
"type": "boolean"
57
57
},
58
-
"autoscaling": {
59
-
"description": "Autoscaling configuration for Celery beat deployment.",
60
-
"type": "object",
61
-
"properties": {
62
-
"autoscaleBehavior": {
63
-
"type": "object"
64
-
},
65
-
"enabled": {
66
-
"type": "boolean"
67
-
},
68
-
"maxReplicas": {
69
-
"type": "integer"
70
-
},
71
-
"minReplicas": {
72
-
"type": "integer"
73
-
},
74
-
"targetCPUUtilizationPercentage": {
75
-
"type": "integer"
76
-
},
77
-
"targetMemoryUtilizationPercentage": {
78
-
"type": "integer"
79
-
}
80
-
}
81
-
},
82
58
"containerSecurityContext": {
83
59
"description": "Container security context for the Celery beat containers.",
84
60
"type": "object"
@@ -128,21 +104,6 @@
128
104
"description": "Annotations for the Celery beat pods.",
129
105
"type": "object"
130
106
},
131
-
"podDisruptionBudget": {
132
-
"description": "Configure pod disruption budgets for Celery beat ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/#specifying-a-poddisruptionbudget",
133
-
"type": "object",
134
-
"properties": {
135
-
"enabled": {
136
-
"type": "boolean"
137
-
},
138
-
"minAvailable": {
139
-
"type": "string"
140
-
},
141
-
"unhealthyPodEvictionPolicy": {
142
-
"type": "string"
143
-
}
144
-
}
145
-
},
146
107
"podSecurityContext": {
147
108
"description": "Pod security context for the Celery beat pods.",
148
109
"type": "object"
@@ -288,7 +249,7 @@
288
249
"type": "object"
289
250
},
290
251
"podAnnotations": {
291
-
"description": "Annotations for the Celery beat pods.",
252
+
"description": "Annotations for the Celery worker pods.",
292
253
"type": "object"
293
254
},
294
255
"podDisruptionBudget": {
@@ -348,6 +309,10 @@
348
309
"description": "Enable startup probe for Celery worker container.",
349
310
"type": "object"
350
311
},
312
+
"terminationGracePeriodSeconds": {
313
+
"description": "Termination grace period seconds for Celery worker pods.",
314
+
"type": "integer"
315
+
},
351
316
"tolerations": {
352
317
"type": "array"
353
318
}
@@ -737,6 +702,10 @@
737
702
"strategy": {
738
703
"type": "object"
739
704
},
705
+
"terminationGracePeriodSeconds": {
706
+
"description": "Termination grace period seconds for django pods.",
0 commit comments