fix(tiller): increase maximum size of gRPC message

* tiller_fix_2261

* fix(tiller) 2261 Increase maxMsgSize to 20MB
release-2.3
Serguei Bezverkhi 9 years ago committed by Matt Butcher
parent 83d15d13a8
commit ddf4e23280
No known key found for this signature in database
GPG Key ID: DCD5F5E5EF32C345

@ -28,9 +28,9 @@ import (
"k8s.io/helm/pkg/version"
)
// maxMsgSize use 10MB as the default message size limit.
// maxMsgSize use 20MB as the default message size limit.
// grpc library default is 4MB
var maxMsgSize = 1024 * 1024 * 10
var maxMsgSize = 1024 * 1024 * 20
// DefaultServerOpts returns the set of default grpc ServerOption's that Tiller requires.
func DefaultServerOpts() []grpc.ServerOption {

Loading…
Cancel
Save