Bump client side grpc max msg size

Set it to match the server side, or the default limit
of 4MB will still apply when upgrading charts.

Fixes #3512

(cherry picked from commit 98e5006ecf)
release-2.8
Johnny Bergström 8 years ago committed by Matthew Fisher
parent 6d6c41eb84
commit fe1c052e87
No known key found for this signature in database
GPG Key ID: CDEC67687EFAA34E

@ -30,6 +30,10 @@ import (
rls "k8s.io/helm/pkg/proto/hapi/services"
)
// maxMsgSize use 20MB as the default message size limit.
// grpc library default is 4MB
const maxMsgSize = 1024 * 1024 * 20
// Client manages client side of the Helm-Tiller protocol.
type Client struct {
opts options
@ -310,6 +314,7 @@ func (h *Client) connect(ctx context.Context) (conn *grpc.ClientConn, err error)
// getting closed by upstreams
Time: time.Duration(30) * time.Second,
}),
grpc.WithDefaultCallOptions(grpc.MaxCallRecvMsgSize(maxMsgSize)),
}
switch {
case h.opts.useTLS:

@ -31,7 +31,7 @@ import (
// maxMsgSize use 20MB as the default message size limit.
// grpc library default is 4MB
var maxMsgSize = 1024 * 1024 * 20
const maxMsgSize = 1024 * 1024 * 20
// DefaultServerOpts returns the set of default grpc ServerOption's that Tiller requires.
func DefaultServerOpts() []grpc.ServerOption {

Loading…
Cancel
Save