From dd203769b1b59bc60e64b29164d0f24f4c5431c8 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Wed, 8 Apr 2026 23:21:28 -0700 Subject: [PATCH] chore(helm): document worker job categories and use 'all' as default (#9002) chore(helm): document worker job categories and use "all" as default Update the worker jobType comment to document the category system (all, default, heavy) with all available job types, and change the default value to "all" to match the CLI default. --- k8s/charts/seaweedfs/values.yaml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/k8s/charts/seaweedfs/values.yaml b/k8s/charts/seaweedfs/values.yaml index f39b3013e..c54fb81e6 100644 --- a/k8s/charts/seaweedfs/values.yaml +++ b/k8s/charts/seaweedfs/values.yaml @@ -1339,9 +1339,14 @@ worker: # Admin server to connect to adminServer: "" - # Worker job types - comma-separated list - # Available: vacuum, volume_balance, erasure_coding - jobType: "vacuum,volume_balance,erasure_coding" + # Worker job types - categories or comma-separated list of names/aliases + # Categories: all, default, heavy + # default: vacuum, volume_balance, ec_balance, admin_script + # heavy: erasure_coding, iceberg_maintenance + # all: every registered job type + # Examples: "all", "default", "heavy", "default,iceberg" (default+iceberg), "vacuum,volume_balance" + # Refer: https://github.com/seaweedfs/seaweedfs/wiki/Worker + jobType: "all" # Maximum number of concurrent detection requests maxDetect: 1