mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-10-22 06:59:03 +00:00
Loosing the request body size limit to 100MB to account for the size
ratio between json and protobuf.
This commit is contained in:
@@ -129,8 +129,8 @@ func TestAddFlags(t *testing.T) {
|
||||
MaxMutatingRequestsInFlight: 200,
|
||||
RequestTimeout: time.Duration(2) * time.Minute,
|
||||
MinRequestTimeout: 1800,
|
||||
JSONPatchMaxCopyBytes: int64(10 * 1024 * 1024),
|
||||
MaxRequestBodyBytes: int64(10 * 1024 * 1024),
|
||||
JSONPatchMaxCopyBytes: int64(100 * 1024 * 1024),
|
||||
MaxRequestBodyBytes: int64(100 * 1024 * 1024),
|
||||
},
|
||||
Admission: &kubeoptions.AdmissionOptions{
|
||||
GenericAdmission: &apiserveroptions.AdmissionOptions{
|
||||
|
Reference in New Issue
Block a user