From d5f21fd8ba6ee20c2504455093a9ceeaa178b826 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 8 Dec 2025 23:21:02 -0800 Subject: fix: add missing backslash for volume extraArgs in helm chart (#7676) Fixes #7467 The -mserver argument line in volume-statefulset.yaml was missing a trailing backslash, which prevented extraArgs from being passed to the weed volume process. Also: - Extracted master server list generation logic into shared helper templates in _helpers.tpl for better maintainability - Updated all occurrences of deprecated -mserver flag to -master across docker-compose files, test files, and documentation --- seaweedfs-rdma-sidecar/scripts/demo-mount-rdma.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'seaweedfs-rdma-sidecar/scripts/demo-mount-rdma.sh') diff --git a/seaweedfs-rdma-sidecar/scripts/demo-mount-rdma.sh b/seaweedfs-rdma-sidecar/scripts/demo-mount-rdma.sh index cc4b8b394..890d6ccc0 100755 --- a/seaweedfs-rdma-sidecar/scripts/demo-mount-rdma.sh +++ b/seaweedfs-rdma-sidecar/scripts/demo-mount-rdma.sh @@ -107,7 +107,7 @@ wait_for_service "Master" "http://localhost:9333/cluster/status" # Start SeaweedFS Volume Server echo -e "${BLUE}💾 Starting SeaweedFS Volume Server...${NC}" -./weed volume -mserver=localhost:9333 -port=8080 -dir=/tmp/seaweedfs-volume & +./weed volume -master=localhost:9333 -port=8080 -dir=/tmp/seaweedfs-volume & VOLUME_PID=$! wait_for_service "Volume Server" "http://localhost:8080/status" -- cgit v1.2.3