From 95aa6b1bdbbfe035be75d2c72e816e2b5031a7fd Mon Sep 17 00:00:00 2001 From: Federico Bertola Date: Tue, 30 Jul 2019 18:13:50 +0200 Subject: [PATCH] Fixed template syntax Signed-off-by: Federico Bertola --- cmd/helm/installer/install.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/helm/installer/install.go b/cmd/helm/installer/install.go index 4dd9cb95e..61971401d 100644 --- a/cmd/helm/installer/install.go +++ b/cmd/helm/installer/install.go @@ -257,7 +257,7 @@ func generateDeployment(opts *Options) (*v1beta1.Deployment, error) { }, }, Tolerations: []v1.Toleration{ - {Operator: v1.TolerationOpExists} + {Operator: v1.TolerationOpExists}, }, HostNetwork: opts.EnableHostNetwork, NodeSelector: nodeSelectors,