From e2f741d41fc03e9f5fba065cc28768e4a50a6199 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=89=E6=AD=A3=E8=B6=85?= Date: Thu, 12 Mar 2026 10:06:42 +0800 Subject: [PATCH] fix(helm): use canonical scanner start delay env (#2142) --- helm/README.md | 2 +- helm/rustfs/templates/configmap.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/README.md b/helm/README.md index 0f1e9ae34..9ba44b9e4 100644 --- a/helm/README.md +++ b/helm/README.md @@ -33,7 +33,7 @@ RustFS helm chart supports **standalone and distributed mode**. For standalone m | config.rustfs.metrics.enabled | bool | `false` | Toggle metrics export. | | config.rustfs.metrics.endpoint | string | `""` | Dedicated metrics endpoint. | | config.rustfs.scanner.speed | string | `""` | Scanner speed preset: `fastest`, `fast`, `default`, `slow`, `slowest` | -| config.rustfs.scanner.start_delay_secs | string | `""` | Override scanner cycle interval in seconds with `RUSTFS_DATA_SCANNER_START_DELAY_SECS` | +| config.rustfs.scanner.start_delay_secs | string | `""` | Override scanner cycle interval in seconds with `RUSTFS_SCANNER_START_DELAY_SECS` | | config.rustfs.scanner.idle_mode | string | `""` | Override scanner idle throttling flag (`RUSTFS_SCANNER_IDLE_MODE`) | | containerSecurityContext.capabilities.drop[0] | string | `"ALL"` | | | containerSecurityContext.readOnlyRootFilesystem | bool | `true` | | diff --git a/helm/rustfs/templates/configmap.yaml b/helm/rustfs/templates/configmap.yaml index 0d37cc9fb..e2137dd39 100644 --- a/helm/rustfs/templates/configmap.yaml +++ b/helm/rustfs/templates/configmap.yaml @@ -52,7 +52,7 @@ data: RUSTFS_SCANNER_SPEED: {{ .speed | quote }} {{- end }} {{- if .start_delay_secs }} - RUSTFS_DATA_SCANNER_START_DELAY_SECS: {{ .start_delay_secs | quote }} + RUSTFS_SCANNER_START_DELAY_SECS: {{ .start_delay_secs | quote }} {{- end }} {{- if .idle_mode }} RUSTFS_SCANNER_IDLE_MODE: {{ .idle_mode | quote }}