diff options
| author | Chris Lu <chrislusf@users.noreply.github.com> | 2025-12-08 23:21:02 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-08 23:21:02 -0800 |
| commit | d5f21fd8ba6ee20c2504455093a9ceeaa178b826 (patch) | |
| tree | 6caa7b2cac8f47f5c64d40a6d41924de53481e32 /docker/compose/e2e-mount.yml | |
| parent | cea12ba3c4df7b54027aa550043ca347bf3f3be4 (diff) | |
| download | seaweedfs-d5f21fd8ba6ee20c2504455093a9ceeaa178b826.tar.xz seaweedfs-d5f21fd8ba6ee20c2504455093a9ceeaa178b826.zip | |
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
Diffstat (limited to 'docker/compose/e2e-mount.yml')
| -rw-r--r-- | docker/compose/e2e-mount.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/compose/e2e-mount.yml b/docker/compose/e2e-mount.yml index 5571bf003..eb4631f04 100644 --- a/docker/compose/e2e-mount.yml +++ b/docker/compose/e2e-mount.yml @@ -13,7 +13,7 @@ services: volume: image: chrislusf/seaweedfs:e2e - command: "-v=4 volume -mserver=master:9333 -ip=volume -ip.bind=0.0.0.0 -preStopSeconds=1" + command: "-v=4 volume -master=master:9333 -ip=volume -ip.bind=0.0.0.0 -preStopSeconds=1" healthcheck: test: [ "CMD", "curl", "--fail", "-I", "http://localhost:8080/healthz" ] interval: 2s |
