From b99ef809c036395d9dd651404a1857052048a1ce Mon Sep 17 00:00:00 2001 From: wojtekt Date: Tue, 10 Sep 2019 12:58:31 +0200 Subject: [PATCH] Use protobufs for communication with apiserver --- cmd/glbc/app/clients.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/cmd/glbc/app/clients.go b/cmd/glbc/app/clients.go index 6e36dffdac..4940d9108d 100644 --- a/cmd/glbc/app/clients.go +++ b/cmd/glbc/app/clients.go @@ -46,6 +46,16 @@ const ( // NewKubeConfig returns a Kubernetes client config given the command line settings. func NewKubeConfig() (*rest.Config, error) { + config, err := newKubeConfig() + if err != nil { + return nil, err + } + // Use protobufs for communication with apiserver + config.ContentType = "application/vnd.kubernetes.protobuf" + return config, nil +} + +func newKubeConfig() (*rest.Config, error) { if flags.F.InCluster { klog.V(0).Infof("Using in cluster configuration") return rest.InClusterConfig()