File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -52,15 +52,15 @@ type Options struct {
52
52
// QPS indicates the maximum queries-per-second of requests sent to the Kubernetes API, defaults to 50.
53
53
QPS float32
54
54
55
- // Burst indicates the maximum burst queries-per-second of requests sent to the Kubernetes API, defaults to 100 .
55
+ // Burst indicates the maximum burst queries-per-second of requests sent to the Kubernetes API, defaults to 300 .
56
56
Burst int
57
57
}
58
58
59
59
// BindFlags will parse the given pflag.FlagSet for Kubernetes client option flags and set the Options accordingly.
60
60
func (o * Options ) BindFlags (fs * pflag.FlagSet ) {
61
61
fs .Float32Var (& o .QPS , flagQPS , 50.0 ,
62
62
"The maximum queries-per-second of requests sent to the Kubernetes API." )
63
- fs .IntVar (& o .Burst , flagBurst , 100 ,
63
+ fs .IntVar (& o .Burst , flagBurst , 300 ,
64
64
"The maximum burst queries-per-second of requests sent to the Kubernetes API." )
65
65
}
66
66
You can’t perform that action at this time.
0 commit comments