diff options
| author | mergwyn <gary@theclarkhome.com> | 2024-04-03 16:17:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-03 08:17:41 -0700 |
| commit | b4def8f0007f63dc6cb4a1be7109b4af2461bd68 (patch) | |
| tree | de06d4393b8f8115e1489d9a079b468a72738a94 | |
| parent | b19c9847c6241cc76e087a4b930a776ef5f07d11 (diff) | |
| download | seaweedfs-b4def8f0007f63dc6cb4a1be7109b4af2461bd68.tar.xz seaweedfs-b4def8f0007f63dc6cb4a1be7109b4af2461bd68.zip | |
Correct type for volume logs and idx values (#5462)
Correct type for volume logs and idx values (#1)
Empty values now correctly set to {}
| -rw-r--r-- | k8s/charts/seaweedfs/values.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/k8s/charts/seaweedfs/values.yaml b/k8s/charts/seaweedfs/values.yaml index 9381f9046..c51b2eb3e 100644 --- a/k8s/charts/seaweedfs/values.yaml +++ b/k8s/charts/seaweedfs/values.yaml @@ -293,9 +293,9 @@ volume: # same applies to "logs" - idx: "" + idx: {} - logs: "" + logs: {} # limit background compaction or copying speed in mega bytes per second compactionMBps: "50" |
