Skip to content

Commit 1e410d6

Browse files
committed
Increase default volume-percentage value to 50%
Since we are calculating incorrectly, previous value 30% makes sense. However, after the correction of the behavior, it is likely that there are many nodes filled with some data. So that, we need to increase the default behavior to not hurt the usability.
1 parent 027f4a8 commit 1e410d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/cli/admin/mustgather/mustgather.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ func NewMustGatherOptions(streams genericiooptions.IOStreams) *MustGatherOptions
141141
SourceDir: "/must-gather/",
142142
IOStreams: streams,
143143
Timeout: 10 * time.Minute,
144-
VolumePercentage: 30,
144+
VolumePercentage: 50,
145145
}
146146
opts.LogOut = opts.newPrefixWriter(streams.Out, "[must-gather ] OUT", false, true)
147147
opts.RawOut = opts.newPrefixWriter(streams.Out, "", false, false)

0 commit comments

Comments
 (0)