Merge pull request #77165 from mattjmcnaughton/mattjmcnaughton/77138-increase-max-msg-size-dockershim

Increase maxMsgSize for dockershim
This commit is contained in:
Kubernetes Prow Robot 2019-04-30 20:50:56 -07:00 committed by GitHub
commit b219272a76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,9 +26,9 @@ import (
"k8s.io/kubernetes/pkg/kubelet/util"
)
// maxMsgSize use 8MB as the default message size limit.
// maxMsgSize use 16MB as the default message size limit.
// grpc library default is 4MB
const maxMsgSize = 1024 * 1024 * 8
const maxMsgSize = 1024 * 1024 * 16
// DockerServer is the grpc server of dockershim.
type DockerServer struct {