Skip to content

Commit

Permalink
Rename scanJobsRetryDelay param to avoid confusion
Browse files Browse the repository at this point in the history
  • Loading branch information
Elbakyan Shirak committed Sep 15, 2024
1 parent 18e40db commit 57cfd8e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deploy/helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Keeps security report resources updated
| operator.scanJobTTL | string | `""` | scanJobTTL the set automatic cleanup time after the job is completed |
| operator.scanJobTimeout | string | `"5m"` | scanJobTimeout the length of time to wait before giving up on a scan job |
| operator.scanJobsConcurrentLimit | int | `10` | scanJobsConcurrentLimit the maximum number of scan jobs create by the operator |
| operator.scanJobsRetryDelay | string | `"30s"` | scanJobsRetryDelay the duration to wait before retrying a failed scan job |
| operator.scanJobsRetryAfter | string | `"30s"` | scanJobsRetryAfter the duration to wait before retrying a failed scan job |
| operator.scanNodeCollectorLimit | int | `1` | scanNodeCollectorLimit the maximum number of node collector jobs create by the operator |
| operator.scanSecretTTL | string | `""` | scanSecretTTL set an automatic cleanup for scan job secrets |
| operator.scannerReportTTL | string | `"24h"` | scannerReportTTL the flag to set how long a report should exist. "" means that the ScannerReportTTL feature is disabled |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ data:
OPERATOR_SCAN_JOB_TIMEOUT: {{ .Values.operator.scanJobTimeout | quote }}
OPERATOR_CONCURRENT_SCAN_JOBS_LIMIT: {{ .Values.operator.scanJobsConcurrentLimit | quote }}
OPERATOR_CONCURRENT_NODE_COLLECTOR_LIMIT: {{ .Values.operator.scanNodeCollectorLimit | quote }}
OPERATOR_SCAN_JOB_RETRY_AFTER: {{ .Values.operator.scanJobsRetryDelay | quote }}
OPERATOR_SCAN_JOB_RETRY_AFTER: {{ .Values.operator.scanJobsRetryAfter | quote }}
OPERATOR_BATCH_DELETE_LIMIT: {{ .Values.operator.batchDeleteLimit | quote }}
OPERATOR_BATCH_DELETE_DELAY: {{ .Values.operator.batchDeleteDelay | quote }}
OPERATOR_METRICS_BIND_ADDRESS: ":8080"
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ operator:
# -- scanNodeCollectorLimit the maximum number of node collector jobs create by the operator
scanNodeCollectorLimit: 1

# -- scanJobsRetryDelay the duration to wait before retrying a failed scan job
scanJobsRetryDelay: 30s
# -- scanJobsRetryAfter the duration to wait before retrying a failed scan job
scanJobsRetryAfter: 30s

# -- the flag to enable vulnerability scanner
vulnerabilityScannerEnabled: true
Expand Down

0 comments on commit 57cfd8e

Please sign in to comment.