@@ -529,6 +529,7 @@ A Helm chart for Kubernetes to install DefectDojo
529529| celery.beat.affinity | object | `{}` | |
530530| celery.beat.annotations | object | `{}` | Annotations for the Celery beat deployment. |
531531| celery.beat.automountServiceAccountToken | bool | `false` | |
532+ | celery.beat.autoscaling | object | `{"autoscaleBehavior":{},"enabled":false,"maxReplicas":5,"minReplicas":2,"targetCPUUtilizationPercentage":80,"targetMemoryUtilizationPercentage":{}}` | Autoscaling configuration for Celery beat deployment. |
532533| celery.beat.containerSecurityContext | object | `{}` | Container security context for the Celery beat containers. |
533534| celery.beat.extraEnv | list | `[]` | Additional environment variables injected to Celery beat containers. |
534535| celery.beat.extraInitContainers | list | `[]` | A list of additional initContainers to run before celery beat containers. |
@@ -538,6 +539,7 @@ A Helm chart for Kubernetes to install DefectDojo
538539| celery.beat.livenessProbe | object | `{}` | Enable liveness probe for Celery beat container. ``` exec: command: - bash - -c - celery -A dojo inspect ping -t 5 initialDelaySeconds: 30 periodSeconds: 60 timeoutSeconds: 10 ``` |
539540| celery.beat.nodeSelector | object | `{}` | |
540541| celery.beat.podAnnotations | object | `{}` | Annotations for the Celery beat pods. |
542+ | celery.beat.podDisruptionBudget | object | `{"enabled":false,"minAvailable":"50%","unhealthyPodEvictionPolicy":"AlwaysAllow"}` | Configure pod disruption budgets for Celery beat ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/#specifying-a-poddisruptionbudget |
541543| celery.beat.podSecurityContext | object | `{}` | Pod security context for the Celery beat pods. |
542544| celery.beat.readinessProbe | object | `{}` | Enable readiness probe for Celery beat container. |
543545| celery.beat.replicas | int | `1` | |
@@ -595,6 +597,7 @@ A Helm chart for Kubernetes to install DefectDojo
595597| django.affinity | object | `{}` | |
596598| django.annotations | object | `{}` | |
597599| django.automountServiceAccountToken | bool | `false` | |
600+ | django.autoscaling | object | `{"autoscaleBehavior":{},"enabled":false,"maxReplicas":5,"minReplicas":2,"targetCPUUtilizationPercentage":80,"targetMemoryUtilizationPercentage":{}}` | Autoscaling configuration for the Django deployment. |
598601| django.extraEnv | list | `[]` | Additional environment variables injected to all Django containers and initContainers. |
599602| django.extraInitContainers | list | `[]` | A list of additional initContainers to run before the uwsgi and nginx containers. |
600603| django.extraVolumeMounts | list | `[]` | Array of additional volume mount points common to all containers and initContainers. |
@@ -622,6 +625,7 @@ A Helm chart for Kubernetes to install DefectDojo
622625| django.nginx.tls.enabled | bool | `false` | |
623626| django.nginx.tls.generateCertificate | bool | `false` | |
624627| django.nodeSelector | object | `{}` | |
628+ | django.podDisruptionBudget | object | `{"enabled":false,"minAvailable":"50%","unhealthyPodEvictionPolicy":"AlwaysAllow"}` | Configure pod disruption budgets for django ref: https://kubernetes.io/docs/tasks/run-application/configure-pdb/#specifying-a-poddisruptionbudget |
625629| django.podSecurityContext | object | `{"fsGroup":1001}` | Pod security context for the Django pods. |
626630| django.replicas | int | `1` | |
627631| django.service.annotations | object | `{}` | |
0 commit comments